summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/spec/functions/ceiling_spec.rb
blob: 068272084e6397646a28f338d9d3ef53afc2932e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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