1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 15:23:08 +00:00
os-autoinst-distri-fedora/tests/applications/kcalc/aaa_setup.pm
2024-11-12 14:43:27 +01:00

27 lines
440 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This script starts the KCalc application
# and saves the milestone for the consequtive
# tests.
sub run {
my $self = shift;
# Run the application
menu_launch_type("kcalc");
assert_screen("kcalc_runs");
# wait for system to settle before snapshotting
sleep 10;
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: