os-autoinst-distri-fedora/tests/applications/calculator/aaa_setup.pm

23 lines
346 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");
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: