Saltstack Official OpenSSH Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 lines
358B

  1. # frozen_string_literal: true
  2. mapdata_file = "_mapdata/#{system.platform[:finger].split('.').first}.yaml"
  3. mapdata_dump = inspec.profile.file(mapdata_file)
  4. control '`map.jinja` YAML dump' do
  5. title 'should contain the lines'
  6. describe file('/tmp/salt_mapdata_dump.yaml') do
  7. it { should exist }
  8. its('content') { should eq mapdata_dump }
  9. end
  10. end