1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-28 16:57:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/terminal.pm

28 lines
442 B
Perl
Raw Normal View History

use base "installedtest";
use strict;
use testapi;
use utils;
# This test tests if Terminal starts.
sub run {
my $self = shift;
# open the application
menu_launch_type "terminal";
assert_screen "apps_run_terminal";
# Register application
register_application("gnome-terminal");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: