mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-23 04:08:02 +00:00
25 lines
588 B
Ruby
25 lines
588 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'difference function' do
|
|
describe 'success' do
|
|
pp = <<-DOC
|
|
$a = ['a','b','c']
|
|
$b = ['b','c','d']
|
|
$c = ['a']
|
|
$o = difference($a, $b)
|
|
if $o == $c {
|
|
notify { 'output correct': }
|
|
}
|
|
DOC
|
|
it 'returns non-duplicates in the first array' do
|
|
apply_manifest(pp, :catch_failures => true) do |r|
|
|
expect(r.stdout).to match(%r{Notice: output correct})
|
|
end
|
|
end
|
|
end
|
|
describe 'failure' do
|
|
it 'handles non-array arguments'
|
|
it 'handles improper argument counts'
|
|
end
|
|
end
|