inspec/test/integration/default/controls/matcher_test.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -07:00

20 lines
416 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