blob: 8b13478f2525a843a8ecc4ce028ea8433a0abc9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'spec_helper'
describe 'round' do
it { is_expected.not_to eq(nil) }
it { is_expected.to run.with_params(34.3).and_return(34) }
it { is_expected.to run.with_params(-34.3).and_return(-34) }
it { is_expected.to run.with_params(34.5).and_return(35) }
it { is_expected.to run.with_params(-34.5).and_return(-35) }
it { is_expected.to run.with_params(34.7).and_return(35) }
it { is_expected.to run.with_params(-34.7).and_return(-35) }
it { is_expected.to run.with_params("test").and_raise_error Puppet::ParseError }
it { is_expected.to run.with_params("test", "best").and_raise_error Puppet::ParseError }
it { is_expected.to run.with_params(3, 4).and_raise_error Puppet::ParseError }
end
|