blob: c78aa62ff4d696989a4f5b6be6f20912f35ec494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'spec_helper'
describe 'camelcase' do
it { is_expected.not_to eq(nil) }
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) }
it { is_expected.to run.with_params(100).and_raise_error(Puppet::ParseError) }
it { is_expected.to run.with_params("abc").and_return("Abc") }
it { is_expected.to run.with_params("aa_bb_cc").and_return("AaBbCc") }
it { is_expected.to run.with_params("_aa__bb__cc_").and_return("AaBbCc") }
it { is_expected.to run.with_params("100").and_return("100") }
it { is_expected.to run.with_params("1_00").and_return("100") }
it { is_expected.to run.with_params("_").and_return("") }
it { is_expected.to run.with_params("").and_return("") }
it { is_expected.to run.with_params([]).and_return([]) }
it { is_expected.to run.with_params(["abc", "aa_bb_cc"]).and_return(["Abc", "AaBbCc"]) }
it { is_expected.to run.with_params(["abc", 1, "aa_bb_cc"]).and_return(["Abc", 1, "AaBbCc"]) }
end
|