2018-12-18 12:07:37 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
2019-06-21 12:54:18 +00:00
|
|
|
# This test tests that Settings starts
|
|
|
|
#
|
2018-12-18 12:07:37 +00:00
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# start the settings application
|
2021-09-06 15:34:45 +00:00
|
|
|
menu_launch_type 'settings';
|
|
|
|
|
2018-12-18 12:07:37 +00:00
|
|
|
# select Background menu item
|
|
|
|
assert_and_click 'apps_settings_menu_background';
|
|
|
|
wait_still_screen 5;
|
2022-07-28 20:32:57 +00:00
|
|
|
|
2018-12-18 12:07:37 +00:00
|
|
|
# close the application
|
|
|
|
send_key 'alt-f4';
|
|
|
|
wait_still_screen 5;
|
|
|
|
|
|
|
|
# check that the screen really is black
|
|
|
|
assert_screen 'workspace';
|
2019-09-19 14:03:50 +00:00
|
|
|
# Register application
|
|
|
|
register_application("gnome-control-center");
|
2022-07-28 20:32:57 +00:00
|
|
|
|
2018-12-18 12:07:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2024-04-12 19:45:47 +00:00
|
|
|
return {};
|
2018-12-18 12:07:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|