f3e79ddcd5
Tests in the new style produces the following documentation output: abs should not eq nil should run abs() and raise an Puppet::ParseError should run abs(-34) and return 34 should run abs("-34") and return 34 should run abs(34) and return 34 should run abs("34") and return 34
21 lines
1.5 KiB
Ruby
Executable file
21 lines
1.5 KiB
Ruby
Executable file
require 'spec_helper'
|
|
|
|
describe 'difference' do
|
|
it { is_expected.not_to eq(nil) }
|
|
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params('one', []).and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params([], 'two').and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params({}, {}).and_raise_error(Puppet::ParseError) }
|
|
it { is_expected.to run.with_params([], []).and_return([]) }
|
|
it { is_expected.to run.with_params([], ['one']).and_return([]) }
|
|
it { is_expected.to run.with_params(['one'], ['one']).and_return([]) }
|
|
it { is_expected.to run.with_params(['one'], []).and_return(['one']) }
|
|
it { is_expected.to run.with_params(['one', 'two', 'three'], ['two', 'three']).and_return(['one']) }
|
|
it { is_expected.to run.with_params(['one', 'two', 'two', 'three'], ['two', 'three']).and_return(['one']) }
|
|
it { is_expected.to run.with_params(['one', 'two', 'three'], ['two', 'two', 'three']).and_return(['one']) }
|
|
it { is_expected.to run.with_params(['one', 'two', 'three'], ['two', 'three', 'four']).and_return(['one']) }
|
|
it 'should not confuse types' do is_expected.to run.with_params(['1', '2', '3'], [1, 2]).and_return(['1', '2', '3']) end
|
|
end
|