Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created May 23, 2013 13:50
Show Gist options
  • Save adamhjk/5636209 to your computer and use it in GitHub Desktop.
Save adamhjk/5636209 to your computer and use it in GitHub Desktop.
Use LWRP finders in your ChefSpec
require 'chefspec'
require 'berkshelf'
require 'tmpdir'
require 'fileutils'
TOPDIR = File.expand_path(File.join(File.dirname(__FILE__), ".."))
$: << File.expand_path(File.dirname(__FILE__))
Berkshelf.ui.mute!
berks = Berkshelf::Berksfile.from_file(File.join(TOPDIR, "Berksfile"))
tmpdirname = Dir.mktmpdir("chefspec-berks")
berks.install(path: tmpdirname)
$cookbook_path = tmpdirname
module ChefSpec
class ChefRunner
%w{yum_key yum_repository}.each do |rtype|
define_method(rtype) do |name|
find_resource(rtype, name)
end
end
end
end
RSpec.configure do |c|
#c.filter_run :focus => true
#c.run_all_when_everything_filtered = true
c.after(:suite) do
FileUtils.rm_rf($cookbook_path)
end
end
@adamhjk
Copy link
Author

adamhjk commented May 23, 2013

bool = chef_run.ge_selinux_bool "something"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment