1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-30 17:47:23 +00:00
os-autoinst-distri-fedora/tests/applications/kcalc/help.pm
2024-03-25 10:47:04 +01:00

31 lines
480 B
Perl

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: