1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-12 11:27:21 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/clocks.pm
Adam Williamson 51e7b28978 Correct 'grant_access' needle name in several tests
Several tests still had the old 'apps_run_access' name which we
changed some time ago, so these safety checks weren't working.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2023-05-04 09:57:15 -07:00

32 lines
615 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Clocks starts.
sub run {
my $self = shift;
# Start the application
start_with_launcher('apps_menu_clocks');
assert_screen ["apps_run_clocks", "grant_access"];
# give access rights if asked
if (match_has_tag 'grant_access') {
click_lastmatch;
assert_screen 'apps_run_clocks';
}
# Register application
register_application("gnome-clocks");
# close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: