Remove falkon, k3b, krusader, ktorrent from KDE app startstop
They have all been dropped from the spin recently. Remove all related needles too. Signed-off-by: Adam Williamson <awilliam@redhat.com>
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"width": 45,
|
||||
"ypos": 10,
|
||||
"type": "match",
|
||||
"height": 16,
|
||||
"xpos": 413
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"falkon_runs"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 35 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"falkon_runs"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 413,
|
||||
"ypos": 8,
|
||||
"width": 45,
|
||||
"height": 16,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 206 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"k3b_burner_warning"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 519,
|
||||
"ypos": 355,
|
||||
"width": 55,
|
||||
"height": 14,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 341 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"k3b_runs"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 430,
|
||||
"ypos": 9,
|
||||
"width": 27,
|
||||
"height": 14,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 326 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"krusader_runs"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 310,
|
||||
"ypos": 8,
|
||||
"width": 64,
|
||||
"height": 16,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 302 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"ypos": 683,
|
||||
"height": 19,
|
||||
"xpos": 876,
|
||||
"type": "match",
|
||||
"width": 60
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"krusader_settings_close"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 62 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"krusader_settings_close"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 876,
|
||||
"ypos": 683,
|
||||
"width": 60,
|
||||
"height": 19,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 79 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"width": 59,
|
||||
"type": "match",
|
||||
"ypos": 10,
|
||||
"height": 15,
|
||||
"xpos": 337
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"ktorrent_runs"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 49 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"ktorrent_runs"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 340,
|
||||
"ypos": 8,
|
||||
"width": 59,
|
||||
"height": 15,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 309 KiB |
@ -1,26 +0,0 @@
|
||||
use base "installedtest";
|
||||
use strict;
|
||||
use testapi;
|
||||
use utils;
|
||||
|
||||
# This test checks that Falkon starts.
|
||||
|
||||
sub run {
|
||||
my $self = shift;
|
||||
|
||||
# Start the application
|
||||
menu_launch_type 'falkon';
|
||||
# Check that it is started
|
||||
assert_screen 'falkon_runs';
|
||||
# Close the application
|
||||
quit_with_shortcut();
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
return {always_rollback => 1};
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
||||
# vim: set sw=4 et:
|
@ -1,28 +0,0 @@
|
||||
use base "installedtest";
|
||||
use strict;
|
||||
use testapi;
|
||||
use utils;
|
||||
|
||||
# This test checks that K3B starts.
|
||||
|
||||
sub run {
|
||||
my $self = shift;
|
||||
|
||||
# Start the application
|
||||
menu_launch_type 'k3b';
|
||||
# Get rid of no burner warning
|
||||
assert_and_click 'k3b_burner_warning';
|
||||
# Check that it is started
|
||||
assert_screen 'k3b_runs';
|
||||
# Close the application
|
||||
quit_with_shortcut();
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
return {always_rollback => 1};
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
||||
# vim: set sw=4 et:
|
@ -1,34 +0,0 @@
|
||||
use base "installedtest";
|
||||
use strict;
|
||||
use testapi;
|
||||
use utils;
|
||||
|
||||
# This test checks that Krusader starts.
|
||||
|
||||
sub run {
|
||||
my $self = shift;
|
||||
|
||||
# Start the application
|
||||
menu_launch_type "krusader";
|
||||
# Deal with the welcome screens, which all have an OK button
|
||||
assert_screen ["kde_ok", "krusader_settings_close"];
|
||||
while (match_has_tag "kde_ok") {
|
||||
assert_and_click "kde_ok";
|
||||
assert_screen ["kde_ok", "krusader_settings_close"];
|
||||
}
|
||||
assert_and_click "krusader_settings_close";
|
||||
|
||||
wait_still_screen 2;
|
||||
# Check that it is started
|
||||
assert_screen 'krusader_runs';
|
||||
# Close the application
|
||||
quit_with_shortcut();
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
return {always_rollback => 1};
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
# vim: set sw=4 et:
|
@ -1,26 +0,0 @@
|
||||
use base "installedtest";
|
||||
use strict;
|
||||
use testapi;
|
||||
use utils;
|
||||
|
||||
# This test checks that Ktorrent starts.
|
||||
|
||||
sub run {
|
||||
my $self = shift;
|
||||
|
||||
# Start the application
|
||||
menu_launch_type 'ktorrent';
|
||||
# Check that it is started
|
||||
assert_screen 'ktorrent_runs';
|
||||
# Close the application
|
||||
quit_with_shortcut();
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
return {always_rollback => 1};
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
||||
# vim: set sw=4 et:
|