mirror of
				https://github.com/tmux-plugins/tpm.git
				synced 2025-11-04 08:36:05 +00:00 
			
		
		
		
	Change testing directory structure
This commit is contained in:
		
							
								
								
									
										28
									
								
								tests/test_plugin_installation.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										28
									
								
								tests/test_plugin_installation.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,28 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | 
			
		||||
 | 
			
		||||
source $CURRENT_DIR/helpers.sh
 | 
			
		||||
 | 
			
		||||
test_plugin_installation() {
 | 
			
		||||
	set_tmux_conf_helper <<- HERE
 | 
			
		||||
	set -g @tpm_plugins "bruno-/tmux_example_plugin"
 | 
			
		||||
	run-shell "~/tpm/tpm"
 | 
			
		||||
	HERE
 | 
			
		||||
 | 
			
		||||
	# opens tmux and test it with `expect`
 | 
			
		||||
	$CURRENT_DIR/expect_successful_plugin_download ||
 | 
			
		||||
		fail_helper "Tmux plugin installation fails"
 | 
			
		||||
 | 
			
		||||
	# check plugin dir exists after download
 | 
			
		||||
	check_dir_exists_helper "$HOME/.tmux/plugins/tmux_example_plugin/" ||
 | 
			
		||||
		fail_helper "Plugin download fails"
 | 
			
		||||
 | 
			
		||||
	teardown_helper
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
main() {
 | 
			
		||||
	test_plugin_installation
 | 
			
		||||
	exit_value_helper
 | 
			
		||||
}
 | 
			
		||||
main
 | 
			
		||||
		Reference in New Issue
	
	Block a user