use cmp in port docs instead of eq

Fixes https://github.com/chef/inspec/issues/438

Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
Dominik Richter 2017-04-27 00:16:50 +02:00
parent 71a4f0d8f0
commit 84a59cab50

View file

@ -75,13 +75,13 @@ The `be_listening` matcher tests if the port is listening for traffic:
The `pids` matcher tests the process identifiers (PIDs): The `pids` matcher tests the process identifiers (PIDs):
its('pids') { should eq ['27808'] } its('pids') { should cmp 27808 }
### processes ### processes
The `processes` matcher tests if the named process is running on the system: The `processes` matcher tests if the named process is running on the system:
its('processes') { should eq ['syslog'] } its('processes') { should cmp 'syslog' }
### protocols ### protocols
@ -101,7 +101,7 @@ The following examples show how to use this InSpec audit resource.
describe port(80) do describe port(80) do
it { should be_listening } it { should be_listening }
its('protocols') {should eq ['tcp']} its('protocols') { should cmp 'tcp' }
end end
### Test port 80, on a specific address ### Test port 80, on a specific address
@ -123,7 +123,7 @@ or:
describe port(80) do describe port(80) do
it { should be_listening } it { should be_listening }
its('protocols') {should eq ['tcp6']} its('protocols') { should cmp 'tcp6' }
end end
### Test that only secure ports accept requests ### Test that only secure ports accept requests
@ -134,7 +134,7 @@ or:
describe port(443) do describe port(443) do
it { should be_listening } it { should be_listening }
its('protocols') {should eq ['tcp']} its('protocols') { should cmp 'tcp' }
end end
### Verify port 65432 is not listening ### Verify port 65432 is not listening