mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
20 lines
364 B
Ruby
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
|