summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/resource/rest_spec.rb
blob: 8857c552efc00c19231134caceee3ebd58adc428 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env ruby

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