Sha256: 060a764fce3ea56038cfed0df44863131b243c2338f5e1900d29328cf6f56ee6
Contents?: true
Size: 548 Bytes
Versions: 29
Compression:
Stored size: 548 Bytes
Contents
#! /usr/bin/env ruby -S rspec require 'spec_helper' describe "the swapcase function" do let(:scope) { PuppetlabsSpec::PuppetInternals.scope } it "should exist" do Puppet::Parser::Functions.function("swapcase").should == "function_swapcase" end it "should raise a ParseError if there is less than 1 arguments" do lambda { scope.function_swapcase([]) }.should( raise_error(Puppet::ParseError)) end it "should swapcase a string" do result = scope.function_swapcase(["aaBBccDD"]) result.should(eq('AAbbCCdd')) end end
Version data entries
29 entries across 29 versions & 3 rubygems