inspec/lib/resources/yaml.rb
Dominik Richter dd46027195 bugfix: require yaml in resource
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-30 01:48:59 +02:00

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