inspec/test/unit/mock/profiles/library/libraries/testlib.rb
Miah Johnson df7efefc9d mostly a search and replace for gordon -> example
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 10:13:24 -07:00

12 lines
166 B
Ruby

# Library resource
require 'examplelib'
require 'hashie'
class Example < Inspec.resource(1)
name 'example'
include ExampleLib
def enabled?
true
end
end