inspec/examples/custom-resource/libraries/example.rb
Miah Johnson 9e1a380f0a Delete extra newline
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 10:13:24 -07:00

17 lines
268 B
Ruby

class Example < Inspec.resource(1)
name "example"
example "
describe example do
its('crime_rate') { should be < 2 }
it { should have_a_fabulous_mustache }
end
"
def crime_rate
1
end
def has_a_fabulous_mustache?
true
end
end