 3749fde561
			
		
	
	3749fde561
	
	
	
		
			
			There is no need to duplicate the definition of $_z40 and $_x40 that test-lib.sh supplies the test scripts. Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			440 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			440 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| test_description='checkout switching away from an invalid branch'
 | |
| 
 | |
| . ./test-lib.sh
 | |
| 
 | |
| test_expect_success 'setup' '
 | |
| 	echo hello >world &&
 | |
| 	git add world &&
 | |
| 	git commit -m initial
 | |
| '
 | |
| 
 | |
| test_expect_success 'checkout should not start branch from a tree' '
 | |
| 	test_must_fail git checkout -b newbranch master^{tree}
 | |
| '
 | |
| 
 | |
| test_expect_success 'checkout master from invalid HEAD' '
 | |
| 	echo $_z40 >.git/HEAD &&
 | |
| 	git checkout master --
 | |
| '
 | |
| 
 | |
| test_done
 |