forked from toolshed/abra-bash
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			237 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			237 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bats
 | 
						|
 | 
						|
@test "docker is available" {
 | 
						|
    command -v docker
 | 
						|
}
 | 
						|
 | 
						|
@test "abra is executable" {
 | 
						|
    ./abra --help
 | 
						|
}
 | 
						|
 | 
						|
@test "git is available" {
 | 
						|
    command -v git
 | 
						|
}
 | 
						|
 | 
						|
@test "running in a container" {
 | 
						|
    ls /etc/alpine-release
 | 
						|
}
 |