os-autoinst-distri-fedora/tests/disk_guided_multi.pm

25 lines
392 B
Perl
Raw Normal View History

use base "anacondatest";
use strict;
use testapi;
use anaconda;
sub run {
2015-07-31 08:31:27 +00:00
my $self = shift;
# Anaconda hub
2015-07-31 08:31:27 +00:00
# Go to INSTALLATION DESTINATION and select only one disk.
select_disks(disks=>1);
assert_and_click "anaconda_spoke_done";
# Anaconda hub
assert_screen "anaconda_main_hub", 300; #
}
sub test_flags {
2015-01-28 12:42:34 +00:00
return { fatal => 1 };
}
1;
# vim: set sw=4 et: