Class: Chef::Resource::Directory
- Inherits:
-
Chef::Resource
- Object
- Chef::Resource
- Chef::Resource::Directory
- Defined in:
- lib/chef/handler/resources/directory.rb
Instance Method Summary collapse
Instance Method Details
#to_serverspec ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/chef/handler/resources/directory.rb', line 4 def to_serverspec ERB.new( "\n describe file('\#{path}') do\n<%- unless action.include? :delete -%>\n it { should be_directory }\n it { should be_mode '\#{mode}' }\n it { should be_owned_by '\#{owner}' }\n it { should be_grouped_into '\#{group}' }\n<%- else -%>\n it { should_not be_directory }\n<%- end -%>\n end\n", safe_level = nil, trim_mode = '-').result(binding) end |