This file is indexed.

/usr/share/puppet/modules.available/ironic/spec/classes/ironic_config_spec.rb is in puppet-module-ironic 7.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
require 'spec_helper'

describe 'ironic::config' do

  let :params do
    { :ironic_config => {
        'DEFAULT/foo' => { 'value'  => 'fooValue' },
        'DEFAULT/bar' => { 'value'  => 'barValue' },
        'DEFAULT/baz' => { 'ensure' => 'absent' }
      }
    }
  end

  it 'configures arbitrary ironic configurations' do
    is_expected.to contain_ironic_config('DEFAULT/foo').with_value('fooValue')
    is_expected.to contain_ironic_config('DEFAULT/bar').with_value('barValue')
    is_expected.to contain_ironic_config('DEFAULT/baz').with_ensure('absent')
  end

end