diff --git a/tests/apps_startstop/kde/juk.pm b/tests/apps_startstop/kde/juk.pm deleted file mode 100644 index 73535e2b..00000000 --- a/tests/apps_startstop/kde/juk.pm +++ /dev/null @@ -1,31 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Juk starts. - -sub run { - my $self = shift; - - # Start the application - menu_launch_type 'juk'; - # Dismiss a setting window - assert_and_click 'juk_cancel'; - wait_still_screen 2; - # Check that it is started - assert_screen 'juk_runs'; - # Close the application - send_key 'alt-f4'; - assert_and_click 'juk_confirm'; - -} - -sub test_flags { - return {always_rollback => 1}; -} - - -1; - -# vim: set sw=4 et: diff --git a/tests/apps_startstop/kde/kget.pm b/tests/apps_startstop/kde/kget.pm deleted file mode 100644 index 4cfc268d..00000000 --- a/tests/apps_startstop/kde/kget.pm +++ /dev/null @@ -1,28 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Kget starts. - -sub run { - my $self = shift; - - # Start the application - menu_launch_type 'kget'; - # Enable as default application - assert_and_click 'kget_enable'; - # Check that it is started - assert_screen 'kget_runs'; - # Close the application - quit_with_shortcut(); -} - -sub test_flags { - return {always_rollback => 1}; -} - - -1; - -# vim: set sw=4 et: