1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 23:33:07 +00:00
os-autoinst-distri-fedora/tests/modularity_checkdefaults.pm

21 lines
404 B
Perl
Raw Permalink Normal View History

use base "installedtest";
use strict;
use testapi;
use utils;
sub run {
my $self=shift;
# switch to tty and login as root
$self->root_console(tty=>3);
# Test if modules have default stream and profile defined.
2019-07-26 13:38:54 +00:00
assert_script_run('/root/modularity/modular_functions.py -a checkdefaults -w whitelist');
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: