diff options
author | Matt Robinson <matt@puppetlabs.com> | 2010-11-22 11:59:18 -0800 |
---|---|---|
committer | Matt Robinson <matt@puppetlabs.com> | 2010-11-22 13:37:34 -0800 |
commit | f3cd668b51bd98c7eee32222b550ed1160502b0e (patch) | |
tree | 541e5dee30536485c1dd63256396570c520bfd6e | |
parent | d19f36e7e7d498b9ca12c5ce536f3ee3db114279 (diff) | |
download | puppet-f3cd668b51bd98c7eee32222b550ed1160502b0e.tar.gz puppet-f3cd668b51bd98c7eee32222b550ed1160502b0e.tar.xz puppet-f3cd668b51bd98c7eee32222b550ed1160502b0e.zip |
maint: Fix a test that was missing a require
Paired-with: Nick Lewis
-rwxr-xr-x | spec/unit/network/xmlrpc/client_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/unit/network/xmlrpc/client_spec.rb b/spec/unit/network/xmlrpc/client_spec.rb index 0b9b2b095..8440d39fa 100755 --- a/spec/unit/network/xmlrpc/client_spec.rb +++ b/spec/unit/network/xmlrpc/client_spec.rb @@ -1,4 +1,5 @@ #!/usr/bin/env ruby +require 'puppet/network/client' Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") } |