mirror of
https://github.com/inspec/inspec
synced 2024-11-30 08:30:39 +00:00
21 lines
343 B
Ruby
21 lines
343 B
Ruby
|
class Batsignal < Inspec.resource(1)
|
||
|
name 'batsignal'
|
||
|
|
||
|
example "
|
||
|
describe batsignal do
|
||
|
its('number_of_sightings)') { should eq '4' }
|
||
|
end
|
||
|
"
|
||
|
|
||
|
def number_of_sightings
|
||
|
local_command_call
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def local_command_call
|
||
|
# call out to a core resource
|
||
|
inspec.command('echo 4').stdout.to_i
|
||
|
end
|
||
|
end
|