1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-22 18:33:07 +00:00

Drop kcolorchooser and kruler from KDE apps test

Both were dropped from the default KDE install set:
https://pagure.io/fedora-comps/c/edd0d74
so we need to drop them here too.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-01-12 16:59:13 -08:00
parent b94daf25d0
commit 4e15e16824
6 changed files with 0 additions and 82 deletions

View File

@ -1,15 +0,0 @@
{
"area": [
{
"width": 96,
"xpos": 271,
"type": "match",
"height": 15,
"ypos": 8
}
],
"properties": [],
"tags": [
"kcolorchooser_runs"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

View File

@ -1,15 +0,0 @@
{
"area": [
{
"ypos": 29,
"type": "match",
"height": 18,
"width": 32,
"xpos": 86
}
],
"properties": [],
"tags": [
"kruler_runs"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

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

View File

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