os-autoinst-distri-rocky/tests/apps_startstop/kde/plasmasystemmonitor.pm
Adam Williamson 3c92696d98 Convert ksysguard test to Plasma system monitor test
These were switched out in comps recently.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2021-03-05 17:20:59 -08:00

26 lines
425 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Plasma system monitor starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'system monitor';
# Check that it is started
assert_screen 'systemmonitor_runs';
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: