mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-09 17:04:21 +00:00
6654e522ac
This test had special flags because it used to be run first and did the prep steps for the other tests. Now the aaa_setup test does that job, so there's no reason for this test to have these flags any more, and somehow they seem to be breaking the test on Rawhide. Let's give it the same flag as all the other normal tests. Signed-off-by: Adam Williamson <awilliam@redhat.com>
28 lines
442 B
Perl
28 lines
442 B
Perl
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:
|