mirror of
https://github.com/inspec/inspec
synced 2025-01-01 07:48:57 +00:00
12 lines
234 B
Ruby
12 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
|