summaryrefslogtreecommitdiff
path: root/spec/functions/validate_integer_spec.rb
AgeCommit message (Collapse)Author
2016-10-03Replace :context with :all in spec testsHelen Campbell
2016-09-05Deprecation function to be mutable in all casesHelen Campbell
2016-08-15(maint) Switch 3.x deprecation() to use Puppet warning loggerDominic Cleal
The deprecation function was calling the `Kernel#warn` function which prints to stderr, rather than the Puppet logger. This causes problems for Puppet module tests on Travis CI, which has a cap on the amount of stdout/err permitted in its logs and also prevents users from finding the deprecation warnings when running under a Puppet master.
2016-08-08(modules-3533) deprecation for 3.x number functiontphoney
2015-06-01Convert tests to use plain rspec-puppetDavid Schmitt
Tests in the new style produces the following documentation output: abs should not eq nil should run abs() and raise an Puppet::ParseError should run abs(-34) and return 34 should run abs("-34") and return 34 should run abs(34) and return 34 should run abs("34") and return 34
2015-05-27validate_integer, validate_numeric: explicitely reject hashes in arraysDavid Schmitt
Without this patch, Ruby 1.8's Hash#to_s behaviour causes [{1=>2}] to be treated as "12" when validating values.
2015-04-23specs: loosen certain error expectations to make tests pass on future parserDavid Schmitt
2014-12-04Add new functions validate_numeric() and validate_integer().Oliver Bertuch