inspec/test/fixtures/profiles/library/libraries/testlib.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08: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