2015-02-02 07:46:16 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
describe 'ceiling' 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("foo").and_raise_error(Puppet::ParseError) }
|
|
|
|
it { is_expected.to run.with_params([]).and_raise_error(Puppet::ParseError) }
|
|
|
|
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(33.1).and_return(34) }
|
|
|
|
it { is_expected.to run.with_params(-33.1).and_return(-33) }
|
2015-02-02 07:46:16 +01:00
|
|
|
end
|
|
|
|
|