blob: c6838ab4e36e5567717e52930d2c63f22ed7cd5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /usr/bin/env ruby -S rspec
require 'spec_helper'
describe "the swapcase function" do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
expect(Puppet::Parser::Functions.function("swapcase")).to eq("function_swapcase")
end
it "should raise a ParseError if there is less than 1 arguments" do
expect { scope.function_swapcase([]) }.to( raise_error(Puppet::ParseError))
end
it "should swapcase a string" do
result = scope.function_swapcase(["aaBBccDD"])
expect(result).to(eq('AAbbCCdd'))
end
end
|