summaryrefslogtreecommitdiffstats
path: root/spec/unit/property/ensure_spec.rb
blob: 35151553b74527f165f7b19d6fa42e8581bff779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env rspec
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