inspec/docs/shared/matcher_eq.md.erb
2016-09-22 15:23:21 +02:00

3 lines
237 B
Text

Use the `eq` matcher to test the equality of two values: `its('Port') { should eq '22' }`.
Using `its('Port') { should eq 22 }` will fail because `22` is not a string value! Use the `cmp` matcher for less restrictive value comparisons.