Created
May 23, 2013 13:50
-
-
Save adamhjk/5636209 to your computer and use it in GitHub Desktop.
Use LWRP finders in your ChefSpec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bool = chef_run.ge_selinux_bool "something"