Created
September 18, 2014 17:11
-
-
Save ranjib/ba31fcab137c2ad23fc0 to your computer and use it in GitHub Desktop.
Common Stubs
This file contains hidden or 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
describe 'recipe[doit]' do | |
before(:each) do | |
stub_r3dparty_cookbooks | |
end | |
it 'some awesome specs do here' do | |
# assertion | |
end | |
end |
This file contains hidden or 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' | |
module CommonStubs | |
def stub_3dpraty_cookbooks | |
stub_command('sudo shutdown -h now') | |
end | |
end | |
RSpec.configure do |config| | |
config.include CommonStubs | |
config.before(:all) do | |
stub_3rdparty_cookbooks | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment