File: symbolic_name_spec.rb

package info (click to toggle)
puppet-module-puppetlabs-concat 7.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 532 kB
  • sloc: ruby: 2,584; sh: 46; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 796 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'spec_helper_acceptance'

describe 'symbolic name' do
  attr_reader :basedir

  before(:all) do
    @basedir = setup_test_directory
  end

  let(:pp) do
    <<-MANIFEST
      concat { 'not_abs_path':
        path => '#{basedir}/file',
      }

      concat::fragment { '1':
        target  => 'not_abs_path',
        content => '1',
        order   => '01',
      }

      concat::fragment { '2':
        target  => 'not_abs_path',
        content => '2',
        order   => '02',
      }
    MANIFEST
  end

  it 'applies the manifest twice with no stderr' do
    idempotent_apply(pp)
    expect(file("#{basedir}/file")).to be_file
    expect(file("#{basedir}/file").content).to match '1'
    expect(file("#{basedir}/file").content).to match '2'
  end
end