-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathcamelcase_spec.rb
More file actions
19 lines (17 loc) · 1.03 KB
/
camelcase_spec.rb
File metadata and controls
19 lines (17 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true
require 'spec_helper'
describe 'camelcase', if: Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 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