os-autoinst-distri-fedora/tests/applications/okular/help.pm

24 lines
385 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This part of the suite tests that Evince can display the Help pages.
sub run {
my $self = shift;
# Open Help.
send_key("f1");
wait_still_screen 2;
# Check that Help has been shown.
assert_screen("okular_help_shown", timeout => 30);
}
sub test_flags {
return {always_rollback => 1};
}
1;