1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-04 19:13:08 +00:00

F39 EOL cleanup: remove kmag test and needles

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-11-28 13:39:53 -08:00
parent dcad60de30
commit 4afca7ba95
3 changed files with 0 additions and 44 deletions

View File

@ -1,15 +0,0 @@
{
"area": [
{
"height": 15,
"type": "match",
"ypos": 8,
"width": 72,
"xpos": 194
}
],
"properties": [],
"tags": [
"kmag_runs"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,29 +0,0 @@
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 {};
}
1;
# vim: set sw=4 et: