default_test.rb 445 B

12345678910111213141516
  1. # Chef InSpec test for recipe podman::default
  2. # The Chef InSpec reference, with examples and extensive documentation, can be
  3. # found at https://docs.chef.io/inspec/resources/
  4. unless os.windows?
  5. # This is an example test, replace with your own test.
  6. describe user('root'), :skip do
  7. it { should exist }
  8. end
  9. end
  10. # This is an example test, replace it with your own test.
  11. describe port(80), :skip do
  12. it { should_not be_listening }
  13. end