mirror of
https://github.com/inspec/inspec
synced 2024-12-27 13:33:20 +00:00
15 lines
290 B
Ruby
15 lines
290 B
Ruby
# encoding: utf-8
|
|
|
|
# Parses a yaml document
|
|
# Usage:
|
|
# describe yaml('.kitchen.yaml') do
|
|
# its('driver.name') { should eq('vagrant') }
|
|
# end
|
|
class YamlConfig < JsonConfig
|
|
name 'yaml'
|
|
|
|
# override file load and parse hash from yaml
|
|
def parse(content)
|
|
YAML.load(content)
|
|
end
|
|
end
|