1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-21 22:47:22 +00:00
os-autoinst-distri-fedora/tests/applications/calculator/aaa_setup.pm

27 lines
493 B
Perl
Raw Normal View History

2022-07-13 11:11:18 +00:00
use base "installedtest";
use strict;
use testapi;
use utils;
# This script starts the Calculator and stores an image.
sub run {
my $self = shift;
# Set update notification timestamp
set_update_notification_timestamp();
2022-07-13 11:11:18 +00:00
# Run the application
menu_launch_type("Calculator");
assert_screen("apps_run_calculator");
# wait for system to settle before snapshotting
sleep 10;
2022-07-13 11:11:18 +00:00
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: