mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-08 16:54:21 +00:00
1cd5455eae
This reverts commit 5ae9926225
.
Unfortunately, the fix did not work on Staging, and some
other precaution will have to be made.
31 lines
553 B
Perl
31 lines
553 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This script will start Fonts and save a milestone for the
|
|
# subsequent tests.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# set the update notification timestamp
|
|
set_update_notification_timestamp();
|
|
|
|
# Start the application
|
|
menu_launch_type("fonts");
|
|
# Check that is started
|
|
assert_screen 'apps_run_fonts';
|
|
|
|
# Fullsize the window.
|
|
send_key("super-up");
|
|
wait_still_screen(2);
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1, milestone => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|