-
-
Save bastelfreak/be20dc516224aeac8100 to your computer and use it in GitHub Desktop.
Good vs Bad Tests
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
# This basically tests that Puppet works. | |
describe 'foo' do | |
let(:params) { :param => 'somevalue' } | |
it do | |
should contain_file('bar').with({ | |
:ensure => present, | |
:owner => root, | |
:group => root, | |
:mode => 0644, | |
:content => 'somevalue' | |
}) | |
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
# Better test | |
describe 'foo' do | |
let(:params) { :param => 'somevalue' } | |
it 'should contain the expected resources' do | |
should contain_file('bar').with_content(/^somevalue$/) | |
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
class foo ( | |
$param = value, | |
) { | |
file { 'bar': | |
ensure => present, | |
owner => root, | |
group => root, | |
mode => 0644, | |
content => $param, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment