mirror of https://gitlab.com/KKlochko/tui-rsync
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							508 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							508 B
						
					
					
				Feature: Creating a backup plan with the CLI
 | 
						|
 | 
						|
  @fixture.injector
 | 
						|
  @fixture.in_memory_database
 | 
						|
  @fixture.cli
 | 
						|
  Scenario Outline: Create an new unique backup plan with the CLI
 | 
						|
    Given the CLI arguments are "<arguments>"
 | 
						|
    When I run the CLI
 | 
						|
    Then the CLI executed successfully
 | 
						|
 | 
						|
    Examples:
 | 
						|
      | arguments                                                  |
 | 
						|
      | plans add --label my_label --source /mnt -d /mnt2 -d /mnt3 |
 | 
						|
      | plans add --label label2   --source /mnt -d /mnt2 -d /mnt3 |
 | 
						|
 |