Puppet Camp London presentation introducing the tools and techniques used for testing Puppet code. Also introduces Test Driven Development, what it is and why it's useful.
describe service('nginx') do it { should be_enabled } it { should be_running } end ! describe port(80) do it { should be_listening} end Gareth Rushgrove