Convert ksysguard test to Plasma system monitor test

These were switched out in comps recently.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2021-03-05 16:20:40 -08:00
parent f6fa89f2cf
commit 3c92696d98
5 changed files with 18 additions and 19 deletions

View File

@ -1,15 +0,0 @@
{
"properties": [],
"tags": [
"ksysguard_runs"
],
"area": [
{
"xpos": 349,
"ypos": 9,
"width": 107,
"height": 14,
"type": "match"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 188,
"ypos": 285,
"width": 156,
"height": 20,
"type": "match"
}
],
"properties": [],
"tags": [
"systemmonitor_runs"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -3,15 +3,14 @@ use strict;
use testapi;
use utils;
# This test checks that System monitor starts.
# This test checks that Plasma system monitor starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'ksysguard';
menu_launch_type 'system monitor';
# Check that it is started
assert_screen 'ksysguard_runs';
assert_screen 'systemmonitor_runs';
# Close the application
quit_with_shortcut();
}