Saltstack Official Linux Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
449B

  1. describe file('/etc/profile.d/salt_profile_vi_flavors.sh') do
  2. it('should exist')
  3. its('content') { should match /EDITOR=vim/ }
  4. its('content') { should match /PAGER=view/ }
  5. its('content') { should match /alias vi=vim/ }
  6. end
  7. describe file('/etc/profile.d/salt_profile_locales.sh') do
  8. it('should exist')
  9. its('content') { should match /LANG=en_US/ }
  10. end
  11. describe file('/etc/profile.d/prompt.sh') do
  12. it('should exist')
  13. end