inspec/test/kitchen/policies/default/controls/matcher_test.rb
Miah Johnson e8ae9012ea Move inspec-verify kitchen tests into more obvious directory
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -07:00

19 lines
415 B
Ruby

# matcher be_in test
INSTALLED_MODULES = ['module1', 'module2', 'module3', 'module4', 'module5']
describe 'module1' do
it { should be_in INSTALLED_MODULES}
end
describe ['module1', 'module2', 'module3'] do
it { should be_in INSTALLED_MODULES}
end
describe 'badmodule' do
it { should_not be_in INSTALLED_MODULES}
end
describe ['badmodule1', 'badmodule2'] do
it { should_not be_in INSTALLED_MODULES}
end