mirror of
https://github.com/inspec/inspec
synced 2025-03-03 14:57:31 +00:00
13 lines
188 B
Ruby
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
|