Last active
December 15, 2015 14:09
-
-
Save charlesjohnson/5272831 to your computer and use it in GitHub Desktop.
Default test files for Chef Minitest
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 File.expand_path('../support/helpers', __FILE__) | |
describe 'myface::default' do | |
include Helpers::Myface | |
# Example spec tests can be found at http://git.io/Fahwsw | |
it 'runs no tests by default' do | |
end | |
end |
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
module Helpers | |
module Myface | |
include MiniTest::Chef::Assertions | |
include MiniTest::Chef::Context | |
include MiniTest::Chef::Resources | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment