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/help.pm
2019-01-04 15:23:03 -08:00

25 lines
426 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Help starts.
sub run {
my $self = shift;
# Start the application
start_with_launcher('apps_menu_help', 'apps_menu_utilities');
# Check that is started
assert_screen 'apps_run_help';
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: