diff options
author | Adrien Thebo <git@somethingsinistral.net> | 2013-03-27 13:40:29 -0700 |
---|---|---|
committer | Adrien Thebo <git@somethingsinistral.net> | 2013-03-27 13:40:29 -0700 |
commit | f0db049924674b6221a272d1b04a0d4131c47674 (patch) | |
tree | 5b7751a1d154dcbb86f3bcb7d78a5e65b59fbdac /spec/unit/puppet/parser/functions/suffix_spec.rb | |
parent | 893e6107eddaf15beb28dab481b06668ede94061 (diff) | |
parent | 29402f31e73a426dcc449216010834884d0251ec (diff) | |
download | puppet-stdlib-f0db049924674b6221a272d1b04a0d4131c47674.tar.gz puppet-stdlib-f0db049924674b6221a272d1b04a0d4131c47674.tar.bz2 |
Merge branch 'pull-138'
This closes GH-138.
Diffstat (limited to 'spec/unit/puppet/parser/functions/suffix_spec.rb')
-rw-r--r-- | spec/unit/puppet/parser/functions/suffix_spec.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/unit/puppet/parser/functions/suffix_spec.rb b/spec/unit/puppet/parser/functions/suffix_spec.rb new file mode 100644 index 0000000..c28f719 --- /dev/null +++ b/spec/unit/puppet/parser/functions/suffix_spec.rb @@ -0,0 +1,19 @@ +#! /usr/bin/env ruby -S rspec +require 'spec_helper' + +describe "the suffix function" do + let(:scope) { PuppetlabsSpec::PuppetInternals.scope } + + it "should exist" do + Puppet::Parser::Functions.function("suffix").should == "function_suffix" + end + + it "should raise a ParseError if there is less than 1 arguments" do + lambda { scope.function_suffix([]) }.should( raise_error(Puppet::ParseError)) + end + + it "should return a suffixed array" do + result = scope.function_suffix([['a','b','c'], 'p']) + result.should(eq(['ap','bp','cp'])) + end +end |