blob: 61457175d30a65dbf995ed7b5b70a8580674e4f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
require 'puppet/indirector/runner/rest'
describe Puppet::Agent::Runner::Rest do
it "should be a sublcass of Puppet::Indirector::REST" do
Puppet::Agent::Runner::Rest.superclass.should equal(Puppet::Indirector::REST)
end
end
|