1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-09 01:57:22 +00:00
os-autoinst-distri-fedora/tests/applications/clocks/shortcuts.pm
2022-08-15 16:47:46 +02:00

25 lines
460 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# I as a user want to be able use the menu to enter further functions.
sub run {
my $self = shift;
# Use the menu to see the shortcuts
assert_and_click("gnome_burger_menu");
assert_and_click("clocks_menu_shortcuts");
assert_screen("clocks_shortcuts_shown");
}
sub test_flags {
# Rollback after test is over.
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: