mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
1db0e7465a
kmag was removed in https://pagure.io/fedora-comps/c/bb332b310b22a1103347afece6f845087694d85e?branch=main we can't drop the test entirely yet as it's still in F39. Will drop this after F39 is released. Signed-off-by: Adam Williamson <awilliam@redhat.com>
30 lines
533 B
Perl
30 lines
533 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Kmag starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# FIXME after F39 is stable, drop this test entirely
|
|
my $relnum = get_release_number;
|
|
return unless ($relnum < 40);
|
|
|
|
# Start the application
|
|
menu_launch_type 'kmag';
|
|
# Check that it is started
|
|
assert_screen 'kmag_runs', timeout => 60;
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|