summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/stage_spec.rb
blob: f5fed6c3ca2d7fa9820a15c8d83f6c4009d7cc1f (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env rspec
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