Remove juk and kget from KDE app tests

They were removed from comps in c4d9287.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2021-06-08 15:18:02 -07:00
parent 3b4d0aa00b
commit 5a9a65bb5b
2 changed files with 0 additions and 59 deletions

View File

@ -1,31 +0,0 @@
use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Juk starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'juk';
# Dismiss a setting window
assert_and_click 'juk_cancel';
wait_still_screen 2;
# Check that it is started
assert_screen 'juk_runs';
# Close the application
send_key 'alt-f4';
assert_and_click 'juk_confirm';
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et:

View File

@ -1,28 +0,0 @@
use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Kget starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'kget';
# Enable as default application
assert_and_click 'kget_enable';
# Check that it is started
assert_screen 'kget_runs';
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: