mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-05 07:34:20 +00:00
a881d227fb
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>
25 lines
410 B
Perl
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:
|