From 426b3447daca52292acadfaac748d8ca1277f15e Mon Sep 17 00:00:00 2001 From: Lukas Ruzicka Date: Mon, 11 Mar 2019 19:04:17 +0100 Subject: [PATCH] Delete tests for non-existing menu items. --- tests/apps_startstop/kde/netcon.pm | 26 -------------------------- tests/apps_startstop/kde/users.pm | 29 ----------------------------- 2 files changed, 55 deletions(-) delete mode 100644 tests/apps_startstop/kde/netcon.pm delete mode 100644 tests/apps_startstop/kde/users.pm diff --git a/tests/apps_startstop/kde/netcon.pm b/tests/apps_startstop/kde/netcon.pm deleted file mode 100644 index 6790c626..00000000 --- a/tests/apps_startstop/kde/netcon.pm +++ /dev/null @@ -1,26 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that Network Connections starts. - -sub run { - my $self = shift; - - # Start the application - start_with_launcher('netcon_launch','menu_applications','menu_settings'); - # Check that it is started - assert_screen 'netcon_runs'; - # Close the application - quit_with_shortcut(); -} - -sub test_flags { - return {always_rollback => 1}; -} - - -1; - -# vim: set sw=4 et: diff --git a/tests/apps_startstop/kde/users.pm b/tests/apps_startstop/kde/users.pm deleted file mode 100644 index d8a02851..00000000 --- a/tests/apps_startstop/kde/users.pm +++ /dev/null @@ -1,29 +0,0 @@ -use base "installedtest"; -use strict; -use testapi; -use utils; - -# This test checks that User handling app starts. - -sub run { - my $self = shift; - - # Start the application - start_with_launcher('users_launch', 'menu_applications','menu_administration'); - # The application requires password to be entered and confirmed to start. - type_very_safely(get_var('ROOT_PASSWORD','weakpassword')); - send_key 'ret'; - # Check that it is started - assert_screen 'users_runs'; - # Close the application - quit_with_shortcut(); -} - -sub test_flags { - return {always_rollback => 1}; -} - - -1; - -# vim: set sw=4 et: