blob: 567426fd39756b5e74972a04b0f6978999ff3b7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'spec_helper'
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) }
end
|