upgrade to stdlib 4.6.1
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / unit / puppet / type / anchor_spec.rb
1 #!/usr/bin/env ruby
2
3 require 'spec_helper'
4
5 anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin")
6
7 describe anchor do
8   it "should stringify normally" do
9     expect(anchor.to_s).to eq("Anchor[ntp::begin]")
10   end
11 end