blob: 75dfe871cf7cd0d1089113eeaf2c4cf7df59187a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'spec_helper_acceptance'
describe 'intersection function' do
describe 'success' do
pp = <<-DOC
$a = ['aaa','bbb','ccc']
$b = ['bbb','ccc','ddd','eee']
$c = ['bbb','ccc']
$o = intersection($a,$b)
if $o == $c {
notify { 'output correct': }
}
DOC
it 'intersections arrays' do
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(%r{Notice: output correct})
end
end
it 'intersections empty arrays'
end
describe 'failure' do
it 'handles improper argument counts'
it 'handles non-arrays'
end
end
|