4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/chef/handler/resources/file.rb', line 4
def to_serverspec
ERB.new(
"\n describe file('\#{path}') do\n<%- unless action.include? :delete -%>\n it { should be_file }\n it { should be_mode '\#{mode}' }\n it { should be_owned_by '\#{owner}' }\n it { should be_grouped_into '\#{group}' }\n its(:content) do\nshould match <<EOF\n\#{::File.read(path) if ::File.exist?(path)}\nEOF\n end\n<%- else -%>\n it { should_not be_file }\n<%- end -%>\n end\n",
safe_level = nil, trim_mode = '-').result(binding)
end
|