inspec/test/fixtures/profiles/custom-resource-inheritance/libraries/node.rb
Vasu1105 e26ef71a6b adds test for core resource iheritance in custom resource
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2022-02-01 15:16:12 +05:30

13 lines
188 B
Ruby

require "inspec/resources/json"
class NodeAttributes < JsonConfig
name 'node'
def initialize
super('./test/fixtures/files/node.json')
end
def to_s
"Node Json"
end
end