mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-01-31 04:33:09 +00:00
5151478fa6
This adds two initial custom layout install tests for webUI, and wires up some library functions for other tests to use. They may need refining over time but this should be good enough for a start. Signed-off-by: Adam Williamson <awilliam@redhat.com>
27 lines
525 B
Perl
27 lines
525 B
Perl
use base "anacondatest";
|
|
use strict;
|
|
use testapi;
|
|
use anaconda;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
webui_custom_start;
|
|
webui_custom_create_disklabel;
|
|
webui_custom_boot_partitions;
|
|
|
|
webui_custom_add_partition(filesystem => 'xfs', mountpoint => '/');
|
|
|
|
assert_and_click "anaconda_webui_custom_return";
|
|
assert_and_click "anaconda_webui_continue";
|
|
assert_screen "anaconda_webui_welcome";
|
|
assert_and_click "anaconda_webui_next";
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|