1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-05-14 12:41:34 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/fmw.pm
Adam Williamson a5dffbb33b startstop: test fmw on Workstation and KDE
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>
2025-02-27 16:40:48 -08:00

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: