mirror of
				https://github.com/containers/skopeo.git
				synced 2025-11-04 03:20:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bats
 | 
						|
#
 | 
						|
# Simplest set of skopeo tests. If any of these fail, we have serious problems.
 | 
						|
#
 | 
						|
 | 
						|
load helpers
 | 
						|
 | 
						|
# Override standard setup! We don't yet trust anything
 | 
						|
function setup() {
 | 
						|
    :
 | 
						|
}
 | 
						|
 | 
						|
@test "skopeo version emits reasonable output" {
 | 
						|
    run_skopeo --version
 | 
						|
 | 
						|
    expect_output --substring "skopeo version [0-9.]+"
 | 
						|
}
 | 
						|
 | 
						|
# vim: filetype=sh
 |