inspec/test/unit/mock/profiles/failures/controls/failures.rb
2016-09-01 20:39:52 -04:00

11 lines
234 B
Ruby

# encoding: utf-8
# copyright: 2015, Chef Software, Inc.
# license: All rights reserved
title '/tmp profile'
# you can also use plain tests
describe file('/tmp') do
it { should be_directory }
it { should_nota be_directory }
end