Project

General

Profile

« Previous | Next » 

Revision 7f293021

Added by Bastian Schmidt over 2 years ago

Replace backslash with %r

View differences:

spec/classes/foreman_proxy__plugin__salt_spec.rb
it 'should change salt.yml parameters' do
should contain_file('/etc/foreman-proxy/settings.d/salt.yml').
with_content(/:salt_command_user: example/).
with_content(/:autosign_file: \/etc\/salt\/example.conf/).
with_content(/:use_api: true/).
with_content(/:api_url: http:\/\/foreman.example.com/).
with_content(/:api_auth: ldap/).
with_content(/:api_username: saltapi/).
with_content(/:api_password: letmein/).
with_content(/:saltfile: \/etc\/salt\/Saltfile/)
with_content(%r{:salt_command_user: example}).
with_content(%r{:autosign_file: /etc/salt/example.conf}).
with_content(%r{:use_api: true}).
with_content(%r{:api_url: http://foreman.example.com}).
with_content(%r{:api_auth: ldap}).
with_content(%r{:api_username: saltapi}).
with_content(%r{:api_password: letmein}).
with_content(%r{:saltfile: /etc/salt/Saltfile})
end
end
end

Also available in: Unified diff