blob: a1f2595aaba87a6279e73ce1b1ccf5d3ed69a49f [file] [log] [blame]
Michael Lando6e600062017-06-19 19:51:24 +03001# # 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
8unless 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
13end
14
15# This is an example test, replace it with your own test.
16describe port(80), :skip do
17 it { should_not be_listening }
18end