inspec/test/unit/mock/profiles/old-examples/custom-resource/libraries/example.rb
Miah Johnson a40ec993e8 Rename files to remove references to gordon
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 10:13:24 -07:00

20 lines
364 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
# call out ot another custom resource
inspec.batsignal.number_of_sightings
end
def has_a_fabulous_mustache?
# always true
true
end
end