diff options
author | Matt Robinson <matt@puppetlabs.com> | 2010-11-22 12:04:22 -0800 |
---|---|---|
committer | Matt Robinson <matt@puppetlabs.com> | 2010-11-22 12:04:22 -0800 |
commit | a95783f6d6044789e6a0408976126757d4e9f084 (patch) | |
tree | 84fd2fe90240fd48418a0e627fab09912cbc68a4 | |
parent | 9ed1235c295995b61373b11aa4ae0cc6bb320527 (diff) | |
parent | 7c162157148240814e67124a5362548933a6db8a (diff) | |
download | puppet-a95783f6d6044789e6a0408976126757d4e9f084.tar.gz puppet-a95783f6d6044789e6a0408976126757d4e9f084.tar.xz puppet-a95783f6d6044789e6a0408976126757d4e9f084.zip |
Merge branch 'maint/next/fix_missing_require_test_failure' into next
* maint/next/fix_missing_require_test_failure:
maint: Fix a test that was missing a require
-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") } |