summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/resource/rest_spec.rb
blob: 70c9a7f11f2c82d853a72ad7af8e38bcd848c833 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env rspec
require 'spec_helper'

require 'puppet/indirector/resource/rest'

describe Puppet::Resource::Rest do
  it "should be a sublcass of Puppet::Indirector::REST" do
    Puppet::Resource::Rest.superclass.should equal(Puppet::Indirector::REST)
  end
end