mirror of
https://github.com/inspec/inspec
synced 2024-11-14 08:57:11 +00:00
21 lines
644 B
Ruby
21 lines
644 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
require 'resources/file'
|
|
|
|
module Inspec::Resources
|
|
class Directory < FileResource
|
|
name 'directory'
|
|
desc 'Use the directory InSpec audit resource to test if the file type is a directory. This is equivalent to using the file InSpec audit resource and the be_directory matcher, but provides a simpler and more direct way to test directories. All of the matchers available to file may be used with directory.'
|
|
example "
|
|
describe directory('path') do
|
|
it { should be_directory }
|
|
end
|
|
"
|
|
end
|
|
|
|
def to_s
|
|
"Directory #{@path}"
|
|
end
|
|
end
|