Saltstack Official OpenSSH Formula
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_mapdata_spec.rb 358B

12345678910111213
  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