mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 14:04:22 +00:00
23 lines
377 B
Perl
23 lines
377 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
use disks;
|
||
|
|
||
|
# This script will test if Disks can delete a partition
|
||
|
# and add a new partition instead.
|
||
|
|
||
|
sub run {
|
||
|
# Select the test disk.
|
||
|
assert_and_click("disks_loopdisk_listed");
|
||
|
# Delete the second partition.
|
||
|
delete_partition("two");
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
return {always_rollback => 1};
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|