inspec/test/unit/resource_json_test.rb
2015-09-22 18:33:05 +02:00

15 lines
426 B
Ruby

# encoding: utf-8
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::JSON' do
resource = load_resource('json', 'policyfile.lock.json')
it 'verify json parsing' do
_(resource.params).wont_equal nil
_(resource.send('name')).must_equal 'demo'
_(resource.send('run_list')).must_equal %w{apache2 omnibus}
_(resource.send('cookbook_locks.omnibus.version')).must_equal '2.2.0'
end
end