mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-31 15:16:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			368 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			368 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| use utils;
 | |
| use disks;
 | |
| 
 | |
| # This script will test if Disks can edit the partition name.
 | |
| 
 | |
| sub run {
 | |
|     # Open the menu
 | |
|     assert_and_click("disks_loopdisk_listed");
 | |
|     # Change the type of the partition.
 | |
|     edit_partition("one", "linuxroot", "partroot");
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return {always_rollback => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 |