1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-12 11:27:21 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/cpteditor.pm
Adam Williamson a881d227fb apps_startstop: tweak print theme editor launch to avoid #2165657
Typing a partial binary name no longer seems to work. Typing the
full binary name works, but differently from before; seems best
to do a partial entry name search so we launch the actual entry,
not the executable directly.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2023-01-30 09:31:28 -08:00

25 lines
410 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Control Print Theme Editor starts.
sub run {
my $self = shift;
menu_launch_type 'print theme';
# Check that it is started
assert_screen 'cpteditor_runs', timeout => 60;
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: