Every other example has the value set to 1, so I changed this for consistency.

Signed-off-by: Miah Johnson <miah@chia-pet.org>
This commit is contained in:
Miah Johnson 2019-10-15 16:51:05 -07:00
parent 4ec9f302b0
commit d48bb56087

View file

@ -3,7 +3,7 @@ class Batsignal < Inspec.resource(1)
example "
describe batsignal do
its('number_of_sightings)') { should eq '4' }
its('number_of_sightings)') { should eq '1' }
end
"
@ -15,6 +15,6 @@ class Batsignal < Inspec.resource(1)
def local_command_call
# call out to a core resource
inspec.command('echo 4').stdout.to_i
inspec.command('echo 1').stdout.to_i
end
end