mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-05-14 12:41:34 +00:00
When we added fmw to apps_startstop tests it was only preinstalled on Silverblue, but now it's on KDE and Workstation too. Also includes a needle that matches on part of the UI, which will work on all desktops. Signed-off-by: Adam Williamson <awilliam@redhat.com>
26 lines
391 B
Perl
26 lines
391 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Fedora Media Writer starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# Start the application
|
|
menu_launch_type 'mediawriter';
|
|
# Check that is started
|
|
assert_screen 'apps_run_fmw';
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
}
|
|
|
|
sub test_flags {
|
|
return {};
|
|
}
|
|
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|