1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-05 15:34:22 +00:00
os-autoinst-distri-fedora/tests/applications/kcalc/help.pm

31 lines
480 B
Perl
Raw Normal View History

2024-03-21 17:57:14 +00:00
use base "installedtest";
use strict;
use testapi;
use utils;
# This script checks that Gnome Calculator shows help.
sub run {
my $self = shift;
# Wait until everything settles.
sleep 5;
# Open Help
send_key("f1");
wait_still_screen(2);
# Check that Help opens.
assert_screen("kcalc_help_shown");
# Rest of the documentation is currently
# unavailable.
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: