mirror of
https://github.com/inspec/inspec
synced 2024-12-28 05:53:14 +00:00
16 lines
290 B
Ruby
16 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
|