1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-26 16:07:21 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/kmag.pm
Adam Williamson 1db0e7465a Drop kmag test on F40+
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>
2023-10-15 09:10:51 -07:00

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: