mirror of
https://github.com/inspec/inspec
synced 2024-12-12 14:22:38 +00:00
10 lines
218 B
Ruby
10 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
|