mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 14:04:22 +00:00
22 lines
376 B
Perl
22 lines
376 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
|
||
|
sub run {
|
||
|
|
||
|
# Open the Menu and click on Preferences entry.
|
||
|
assert_and_click("gnome_burger_menu");
|
||
|
assert_and_click("sysmon_menu_preferences");
|
||
|
|
||
|
# Check that Preferences dialogue is shown.
|
||
|
assert_screen("sysmon_preferences_shown");
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
return {always_rollback => 1};
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|