Does not include template rendering tests. Could use some help with these, as they are fairly important.
		
			
				
	
	
		
			20 lines
		
	
	
		
			534 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			534 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# A script to run tests locally before committing.
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
COOKBOOK=$(awk '/^name/ {print $NF}' metadata.rb |tr -d \"\')
 | 
						|
if [ -z $COOKBOOK ]; then
 | 
						|
    echo "Cookbook name not defined in metadata.rb"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
BUNDLE_PATH=${BUNDLE_PATH:-.bundle}
 | 
						|
BERKSHELF_PATH=${BERKSHELF_PATH:-.cookbooks}
 | 
						|
 | 
						|
bundle install --path=${BUNDLE_PATH}
 | 
						|
bundle exec berks install --path=${BERKSHELF_PATH}
 | 
						|
bundle exec foodcritic -f any -t ~FC003 -t ~FC023 ${BERKSHELF_PATH}/${COOKBOOK}
 | 
						|
bundle exec rspec ${BERKSHELF_PATH}/${COOKBOOK}
 |