Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / anchor_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'anchor type' do
4   let(:pp) do
5     <<-MANIFEST
6       class anchored {
7         anchor { 'anchored::begin': }
8         ~> anchor { 'anchored::end': }
9       }
10
11       class anchorrefresh {
12         notify { 'first': }
13         ~> class { 'anchored': }
14         ~> anchor { 'final': }
15       }
16
17       include anchorrefresh
18     MANIFEST
19   end
20
21   it 'applies manifest, anchors resources in correct order' do
22     apply_manifest(pp) do |r|
23       expect(r.stdout).to match(%r{Anchor\[final\]: Triggered 'refresh'})
24     end
25   end
26 end