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

require 'puppet/indirector/facts/rest'

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