mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
d41ec1eb8a
It always launches in basic mode anyway, and sometimes this key press doesn't work right and leaves a stray 'b' in the entry field, which messes things up when we get to the calculation tests. Signed-off-by: Adam Williamson <awilliam@redhat.com>
23 lines
346 B
Perl
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:
|
|
|