nwops / puppet-retrospec

The only tool you need to generate puppet code, tests, modules, facts, types, providers, data and everything else.
https://www.retrospec-puppet.com/
GNU Affero General Public License v3.0
137 stars 27 forks source link

requires are not in correct hash format #86

Closed logicminds closed 6 years ago

logicminds commented 6 years ago
it do
    is_expected.to contain_class('reportslack').with(
      webhook: :undef,
      channel: '#puppet-nodes',
      icon_emoji: '',
      "that_comes_before" => 'Package[git tree]')
  end

Sould be

it do
    is_expected.to contain_class('reportslack').with(
      webhook: :undef,
      channel: '#puppet-nodes',
      icon_emoji: '',
      that_comes_before: 'Package[git tree]' )
  end