mirror of
https://github.com/inspec/inspec
synced 2024-12-12 06:12:37 +00:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
# encoding: utf-8
|
|
|
|
describe ['ananas', 'apples', 'oranges', 'air', 'alot'] do
|
|
it { should all_match /[a]./}
|
|
end
|
|
|
|
describe ['ananas', 'apples', 'oranges', 'air', 'melons'] do
|
|
it { should_not all_match /[a]./}
|
|
end
|