diff --git a/needles/kde/apps/konversation_confirm_close-20220926.json b/needles/kde/apps/konversation_confirm_close-20220926.json deleted file mode 100644 index 8abdf552..00000000 --- a/needles/kde/apps/konversation_confirm_close-20220926.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "ypos": 421, - "width": 54, - "type": "match", - "xpos": 533, - "height": 19 - } - ], - "properties": [], - "tags": [ - "konversation_confirm_close" - ] -} \ No newline at end of file diff --git a/needles/kde/apps/konversation_confirm_close-20220926.png b/needles/kde/apps/konversation_confirm_close-20220926.png deleted file mode 100644 index 484a4219..00000000 Binary files a/needles/kde/apps/konversation_confirm_close-20220926.png and /dev/null differ diff --git a/needles/kde/apps/konversation_connect-20210929.json b/needles/kde/apps/konversation_connect-20210929.json deleted file mode 100644 index f43dbd22..00000000 --- a/needles/kde/apps/konversation_connect-20210929.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "ypos": 370, - "type": "match", - "width": 13, - "xpos": 409, - "height": 19 - } - ], - "properties": [], - "tags": [ - "konversation_connect" - ] -} \ No newline at end of file diff --git a/needles/kde/apps/konversation_connect-20210929.png b/needles/kde/apps/konversation_connect-20210929.png deleted file mode 100644 index 2b84a111..00000000 Binary files a/needles/kde/apps/konversation_connect-20210929.png and /dev/null differ diff --git a/needles/kde/apps/konversation_runs-20220916.json b/needles/kde/apps/konversation_runs-20220916.json deleted file mode 100644 index 3bd8c42a..00000000 --- a/needles/kde/apps/konversation_runs-20220916.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "area": [ - { - "type": "match", - "ypos": 114, - "width": 83, - "height": 15, - "xpos": 516 - } - ], - "properties": [], - "tags": [ - "konversation_runs" - ] -} \ No newline at end of file diff --git a/needles/kde/apps/konversation_runs-20220916.png b/needles/kde/apps/konversation_runs-20220916.png deleted file mode 100644 index d8e4204d..00000000 Binary files a/needles/kde/apps/konversation_runs-20220916.png and /dev/null differ diff --git a/tests/apps_startstop/kde/konversation.pm b/tests/apps_startstop/kde/konversation.pm deleted file mode 100644 index 34e9a646..00000000 --- a/tests/apps_startstop/kde/konversation.pm +++ /dev/null @@ -1,39 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Konversation starts. - -sub run { - my $self = shift; - my $relnum = get_release_number; - # neochat replaced konversation in F40+; while we're still running - # this test on F39 the test has to handle both... - my $app = $relnum > 39 ? 'neochat' : 'konversation'; - - # Start the application - menu_launch_type $app; - # Connect to Freenode - assert_and_click "${app}_connect", timeout => 60 if ($app eq 'konversation'); - # Check that it is started - assert_screen "${app}_runs"; - # Close the application - if ($app eq 'konversation') { - send_key 'alt-f4'; - wait_still_screen 2; - assert_and_click "${app}_confirm_close"; - } - else { - quit_with_shortcut(); - } -} - -sub test_flags { - return {}; -} - - -1; - -# vim: set sw=4 et: diff --git a/tests/apps_startstop/kde/neochat.pm b/tests/apps_startstop/kde/neochat.pm new file mode 100644 index 00000000..7484d94c --- /dev/null +++ b/tests/apps_startstop/kde/neochat.pm @@ -0,0 +1,25 @@ +use base "installedtest"; +use strict; +use testapi; +use utils; + +# This test checks that Neochat starts. + +sub run { + my $self = shift; + # Start the application + menu_launch_type 'neochat'; + # Check that it is started + assert_screen "neochat_runs"; + # Close the application + quit_with_shortcut(); +} + +sub test_flags { + return {}; +} + + +1; + +# vim: set sw=4 et: