diff --git a/needles/gnome/apps/apps_run_fmw-graphic-20250227.json b/needles/gnome/apps/apps_run_fmw-graphic-20250227.json new file mode 100644 index 00000000..daf096a0 --- /dev/null +++ b/needles/gnome/apps/apps_run_fmw-graphic-20250227.json @@ -0,0 +1,15 @@ +{ + "area": [ + { + "height": 87, + "width": 85, + "type": "match", + "ypos": 182, + "xpos": 403 + } + ], + "properties": [], + "tags": [ + "apps_run_fmw" + ] +} \ No newline at end of file diff --git a/needles/gnome/apps/apps_run_fmw-graphic-20250227.png b/needles/gnome/apps/apps_run_fmw-graphic-20250227.png new file mode 100644 index 00000000..a76d6f8f Binary files /dev/null and b/needles/gnome/apps/apps_run_fmw-graphic-20250227.png differ diff --git a/tests/apps_startstop/gnome/fmw.pm b/tests/apps_startstop/gnome/fmw.pm index 814235ab..692c7797 100644 --- a/tests/apps_startstop/gnome/fmw.pm +++ b/tests/apps_startstop/gnome/fmw.pm @@ -3,25 +3,18 @@ use strict; use testapi; use utils; -# This test checks that Fedora Media Writer starts -# on Silverblue. +# This test checks that Fedora Media Writer starts. sub run { my $self = shift; - my $subvariant = get_var("SUBVARIANT"); - if ($subvariant eq "Silverblue") { - # 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(); - } - else { - diag("Fedora Media Writer is not installed on Workstation by default. Skipping test."); - } + # 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 { diff --git a/tests/apps_startstop/kde/fmw.pm b/tests/apps_startstop/kde/fmw.pm new file mode 100644 index 00000000..df0b5fd1 --- /dev/null +++ b/tests/apps_startstop/kde/fmw.pm @@ -0,0 +1,25 @@ +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: