summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/stage_spec.rb
blob: a43e4bffc0ac2b9c2311aea054bd2338eea72f26 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby

require 'spec_helper'

describe Puppet::Type.type(:stage) do
  it "should have a 'name' parameter'" do
    Puppet::Type.type(:stage).new(:name => :foo)[:name].should == :foo
  end
end