Petr Michalec | 10462bb | 2017-03-23 19:18:08 +0100 | [diff] [blame] | 1 | |
2 | ## PROXIES | ||||
3 | # | ||||
4 | describe 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/ } | ||||
12 | end |