blob: 2f5c689816d5ea8e31b5e666e01d50a341b8960c [file] [log] [blame]
Petr Michalec10462bb2017-03-23 19:18:08 +01001
2## PROXIES
3#
4describe file('/etc/environment') do
5 it('should exist')
6 its('content') { should_not match /HTTPS_PROXY"/ }
7 its('content') { should match /HTTP_PROXY="http:\/\/127.0.4.2:80"/ }
8 its('content') { should match /BOB_PATH=/}
9 its('content') { should match /LC_ALL="C"/ }
10 its('content') { should match /ftp_proxy=.*127.0.4.3:2121/ }
11 its('content') { should match /NO_PROXY=.*dummy.net,.local/ }
12end