inspec/examples/custom-resource/libraries/gordon.rb
Ryan Davis a5309ea392 blindly applied chefstyle -a
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00

20 lines
361 B
Ruby

class Gordon < Inspec.resource(1)
name "gordon"
example "
describe gordon do
its('crime_rate') { should be < 2 }
it { should have_a_fabulous_mustache }
end
"
def crime_rate
# call out ot another custom resource
inspec.batsignal.number_of_sightings
end
def has_a_fabulous_mustache?
# always true
true
end
end