mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-05 23:44:25 +00:00
31 lines
480 B
Perl
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:
|
|
|