forked from toolshed/abra
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			517 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			517 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source ./testfunctions.sh
 | 
						|
source ./common.sh
 | 
						|
 | 
						|
run_test "$ABRA record new \
 | 
						|
          --provider gandi \
 | 
						|
          --record-type A \
 | 
						|
          --record-name integration-tests \
 | 
						|
          --record-value 192.157.2.21 \
 | 
						|
          --no-input coopcloud.tech \
 | 
						|
         "
 | 
						|
 | 
						|
run_test '$ABRA record list --provider gandi coopcloud.tech'
 | 
						|
 | 
						|
run_test "$ABRA record rm \
 | 
						|
          --provider gandi \
 | 
						|
          --record-type A \
 | 
						|
          --record-name integration-tests \
 | 
						|
          --no-input coopcloud.tech
 | 
						|
         "
 |