2011-06-29 22:21:55 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
describe 'abs' do
|
|
|
|
it { is_expected.not_to eq(nil) }
|
2011-06-29 22:21:55 +02:00
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
describe 'signature validation in puppet3', :unless => RSpec.configuration.puppet_future do
|
|
|
|
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
|
|
|
|
it {
|
|
|
|
pending("Current implementation ignores parameters after the first.")
|
|
|
|
is_expected.to run.with_params(1, 2).and_raise_error(Puppet::ParseError, /wrong number of arguments/i)
|
|
|
|
}
|
2011-06-29 22:21:55 +02:00
|
|
|
end
|
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
describe 'signature validation in puppet4', :if => RSpec.configuration.puppet_future do
|
|
|
|
it { pending "the puppet 4 implementation"; is_expected.to run.with_params().and_raise_error(ArgumentError) }
|
|
|
|
it { pending "the puppet 4 implementation"; is_expected.to run.with_params(1, 2).and_raise_error(ArgumentError) }
|
|
|
|
it { pending "the puppet 4 implementation"; is_expected.to run.with_params([]).and_raise_error(ArgumentError) }
|
|
|
|
it { pending "the puppet 4 implementation"; is_expected.to run.with_params({}).and_raise_error(ArgumentError) }
|
|
|
|
it { pending "the puppet 4 implementation"; is_expected.to run.with_params(true).and_raise_error(ArgumentError) }
|
2011-06-29 22:59:18 +02:00
|
|
|
end
|
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
it { is_expected.to run.with_params(-34).and_return(34) }
|
|
|
|
it { is_expected.to run.with_params("-34").and_return(34) }
|
|
|
|
it { is_expected.to run.with_params(34).and_return(34) }
|
|
|
|
it { is_expected.to run.with_params("34").and_return(34) }
|
|
|
|
it { is_expected.to run.with_params(-34.5).and_return(34.5) }
|
|
|
|
it { is_expected.to run.with_params("-34.5").and_return(34.5) }
|
|
|
|
it { is_expected.to run.with_params(34.5).and_return(34.5) }
|
|
|
|
it { is_expected.to run.with_params("34.5").and_return(34.5) }
|
2011-06-29 22:21:55 +02:00
|
|
|
end
|