blob: 608c602faa9f42771a8c8b061d2a7dcbc977ca95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'spec_helper'
describe 'floor' 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(33) }
it { is_expected.to run.with_params(-33.1).and_return(-34) }
end
|