diff options
author | David Schmitt <david.schmitt@puppetlabs.com> | 2015-04-15 16:55:28 -0700 |
---|---|---|
committer | David Schmitt <david.schmitt@puppetlabs.com> | 2015-05-05 13:27:46 +0100 |
commit | a3016c45c5aaa979c9d148eb88bb3f7d1369a507 (patch) | |
tree | 9570242ba6ede23b6780c8d1119546c5d52f4086 /spec/functions/camelcase_spec.rb | |
parent | b664fec30f8b7d8a4dd8621d8064df9b9789169b (diff) | |
download | puppet-stdlib-a3016c45c5aaa979c9d148eb88bb3f7d1369a507.tar.gz puppet-stdlib-a3016c45c5aaa979c9d148eb88bb3f7d1369a507.tar.bz2 |
specs: move function specs to where rspec-puppet expects them
Diffstat (limited to 'spec/functions/camelcase_spec.rb')
-rwxr-xr-x | spec/functions/camelcase_spec.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/functions/camelcase_spec.rb b/spec/functions/camelcase_spec.rb new file mode 100755 index 0000000..70382ad --- /dev/null +++ b/spec/functions/camelcase_spec.rb @@ -0,0 +1,24 @@ +#! /usr/bin/env ruby -S rspec +require 'spec_helper' + +describe "the camelcase function" do + let(:scope) { PuppetlabsSpec::PuppetInternals.scope } + + it "should exist" do + expect(Puppet::Parser::Functions.function("camelcase")).to eq("function_camelcase") + end + + it "should raise a ParseError if there is less than 1 arguments" do + expect { scope.function_camelcase([]) }.to( raise_error(Puppet::ParseError)) + end + + it "should capitalize the beginning of a normal string" do + result = scope.function_camelcase(["abc"]) + expect(result).to(eq("Abc")) + end + + it "should camelcase an underscore-delimited string" do + result = scope.function_camelcase(["aa_bb_cc"]) + expect(result).to(eq("AaBbCc")) + end +end |