mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
dd46027195
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
17 lines
306 B
Ruby
17 lines
306 B
Ruby
# encoding: utf-8
|
|
|
|
require 'yaml'
|
|
|
|
# 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
|