Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created May 7, 2013 17:33
Show Gist options
  • Save adamhjk/5534477 to your computer and use it in GitHub Desktop.
Save adamhjk/5534477 to your computer and use it in GitHub Desktop.
Berkshelf and ChefSpec, sitting in a tree.
require 'chefspec'
require 'berkshelf'
require 'tmpdir'
require 'fileutils'
TOPDIR = File.expand_path(File.join(File.dirname(__FILE__), ".."))
$: << File.expand_path(File.dirname(__FILE__))
berks = Berkshelf::Berksfile.from_file(File.join(TOPDIR, "Berksfile"))
tmpdirname = Dir.mktmpdir("chefspec-berks")
berks.install(path: tmpdirname)
COOKBOOK_PATH = tmpdirname
RSpec.configure do |c|
c.filter_run :focus => true
c.run_all_when_everything_filtered = true
c.after(:all) do
FileUtils.rm_rf(tmpdirname)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment