mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
47cfffdea1
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
436 B
436 B
Matchers
contain_match
Test if an array contains a matching element, which is identified by a regular expression.
describe audit_daemon_rules do
its("LIST_RULES") {should contain_match(/^exit,always arch=.* key=time-change syscall=adjtimex,settimeofday/) }
end
contain_duplicates
Test if a list contains duplicate elements:
describe etc_group do
its(:gids) { should_not contain_duplicates }
end