summaryrefslogtreecommitdiffstats
path: root/spec/unit/property/ensure_spec.rb
blob: e1e0f0c52cd94d993c61ce983ef615e0e72fe2fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby

require 'spec_helper'

require 'puppet/property/ensure'

klass = Puppet::Property::Ensure

describe klass do
  it "should be a subclass of Property" do
    klass.superclass.must == Puppet::Property
  end
end