Moved validation test util class to test jar
[sdc.git] / sdc-os-chef / sdc-os-common / test / smoke / default / default_test.rb
1 # # encoding: utf-8
2
3 # Inspec test for recipe sdc-os-common::default
4
5 # The Inspec reference, with examples and extensive documentation, can be
6 # found at http://inspec.io/docs/reference/resources/
7
8 unless os.windows?
9   # This is an example test, replace with your own test.
10   describe user('root'), :skip do
11     it { should exist }
12   end
13 end
14
15 # This is an example test, replace it with your own test.
16 describe port(80), :skip do
17   it { should_not be_listening }
18 end