mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-08 16:54:21 +00:00
26 lines
444 B
Perl
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:
|
|
|