1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-16 21:07:22 +00:00
os-autoinst-distri-fedora/tests/desktop_background.pm
Adam Williamson cf5704eb3d Goddamn boilerplate...
Signed-off-by: Adam Williamson <awilliam@redhat.com>
2019-08-14 14:43:23 -07:00

23 lines
573 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
sub run {
check_desktop_clean;
# If we want to check that there is a correct background used, as a part
# of self identification test, we will do it here. For now we don't do
# this for Rawhide as Rawhide doesn't have its own backgrounds and we
# don't have any requirement for what background Rawhide uses.
my $version = get_var('VERSION');
assert_screen "${version}_background" if ($version ne "Rawhide");
}
sub test_flags {
return { fatal => 1 };
}
1;
# vim: set sw=4 et: