mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-23 10:55:45 +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>
27 lines
472 B
Perl
27 lines
472 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
|
|
start_with_launcher('apps_menu_fmw');
|
|
# Check that is started
|
|
assert_screen 'apps_run_fmw';
|
|
# Register application
|
|
register_application('fedora-media-writer');
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
}
|
|
|
|
sub test_flags {
|
|
return {};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|