26 lines
		
	
	
		
			410 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			410 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| setup_file(){
 | |
|   load "$PWD/tests/integration/helpers/common"
 | |
|   _common_setup
 | |
| }
 | |
| 
 | |
| setup(){
 | |
|   load "$PWD/tests/integration/helpers/common"
 | |
|   _common_setup
 | |
| }
 | |
| 
 | |
| @test "autocomplete output works" {
 | |
|   run $ABRA autocomplete bash
 | |
|   assert_success
 | |
| 
 | |
|   run $ABRA autocomplete fish
 | |
|   assert_success
 | |
| 
 | |
|   run $ABRA autocomplete zsh
 | |
|   assert_success
 | |
| 
 | |
|   run $ABRA autocomplete powershell
 | |
|   assert_success
 | |
| }
 |