blob: d51c11eebd9cea727d7f15f310893f9bfdb45373 [file] [log] [blame]
Petr Michalec10462bb2017-03-23 19:18:08 +01001
2describe file('/etc/profile.d/salt_profile_vi_flavors.sh') do
3 it('should exist')
4 its('content') { should match /EDITOR=vim/ }
5 its('content') { should match /PAGER=view/ }
6 its('content') { should match /alias vi=vim/ }
7end
8
9describe file('/etc/profile.d/salt_profile_locales.sh') do
10 it('should exist')
11 its('content') { should match /LANG=en_US/ }
12end
13
14describe file('/etc/profile.d/prompt.sh') do
15 it('should exist')
16end
17