1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-13 19:57:21 +00:00
os-autoinst-distri-fedora/tests/applications/calculator/aaa_setup.pm
2022-08-05 11:34:22 -07:00

26 lines
444 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;
# Run the application
menu_launch_type("Calculator");
assert_screen("apps_run_calculator");
# Make sure that the application will be in the
# basic mode.
send_key("ctrl-alt-b");
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: