Delete tests for non-existing menu items.

This commit is contained in:
Lukas Ruzicka 2019-03-11 19:04:17 +01:00 committed by Adam Williamson
parent c9a25cb2a6
commit 426b3447da
2 changed files with 0 additions and 55 deletions

View File

@ -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:

View File

@ -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: