This work flips from onlyif to unless (mistakenly looked at the
[puppet-modules/puppetlabs-apt.git] / spec / system / basic_spec.rb
1 require 'spec_helper_system'
2
3 describe 'basic tests:' do
4   # Using puppet_apply as a subject
5   context puppet_apply 'notice("foo")' do
6     its(:stdout) { should =~ /foo/ }
7     its(:stderr) { should be_empty }
8     its(:exit_code) { should be_zero }
9   end
10 end