Sha256: 9c535fbe2c65b5b8991bac6bf3d9ab1341129e4bded9ae94bfd1b8e332b64c7e
Contents?: true
Size: 671 Bytes
Versions: 22
Compression:
Stored size: 671 Bytes
Contents
test_name 'with_puppet_running_on' do with_puppet_running_on(master, {}) do puppet_service = master['puppetservice'] on(master, puppet("resource service #{puppet_service}")).stdout do |result| assert_match(/running/,result,'did not find puppet service/master running') end end end test_name 'skip_test in with_puppet_running_on' do with_puppet_running_on(master, {}) do skip_test 'skip rest' assert(false) end end test_name 'pending_test in with_puppet_running_on' do with_puppet_running_on(master, {}) do pending_test 'pending appendix prepended' assert(false) end end # TODO: no idea how to test fail_test in here
Version data entries
22 entries across 22 versions & 1 rubygems