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

25 lines
427 B
Perl

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();
# Run the application
menu_launch_type("Calculator");
assert_screen("apps_run_calculator");
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: