2020-08-25 00:03:17 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
control '`map.jinja` YAML dump' do
|
|
|
|
title 'should contain the lines'
|
|
|
|
|
|
|
|
mapdata_file = "_mapdata/#{system.platform[:finger].split('.').first}.yaml"
|
|
|
|
mapdata_dump = inspec.profile.file(mapdata_file)
|
|
|
|
|
|
|
|
describe file('/tmp/salt_mapdata_dump.yaml') do
|
|
|
|
it { should exist }
|
2020-08-24 11:26:54 -04:00
|
|
|
its('content') { should eq mapdata_dump }
|
2020-08-25 00:03:17 -04:00
|
|
|
end
|
|
|
|
end
|