diff options
| author | Jesse Wolfe <jes5199@gmail.com> | 2010-03-18 19:01:29 -0700 |
|---|---|---|
| committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
| commit | 1603f7363728dc41f67cd189ca0dcbf074ec44b4 (patch) | |
| tree | 022fa3e476f75ef536e4db4704a1bd4e813ac729 /spec/unit/indirector/run | |
| parent | 16658a0403135bc23ce18bcf2c72c4725ac25faf (diff) | |
| download | puppet-1603f7363728dc41f67cd189ca0dcbf074ec44b4.tar.gz puppet-1603f7363728dc41f67cd189ca0dcbf074ec44b4.tar.xz puppet-1603f7363728dc41f67cd189ca0dcbf074ec44b4.zip | |
Feature #3394 REST Runner, preparation
Rename Puppet::Agent::Runner to Puppet::Run, for consistency
Diffstat (limited to 'spec/unit/indirector/run')
| -rwxr-xr-x | spec/unit/indirector/run/rest.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/unit/indirector/run/rest.rb b/spec/unit/indirector/run/rest.rb new file mode 100755 index 000000000..e07fe7fc2 --- /dev/null +++ b/spec/unit/indirector/run/rest.rb @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby + +require File.dirname(__FILE__) + '/../../../spec_helper' + +require 'puppet/indirector/runner/rest' + +describe Puppet::Run::Rest do + it "should be a sublcass of Puppet::Indirector::REST" do + Puppet::Run::Rest.superclass.should equal(Puppet::Indirector::REST) + end +end |
