diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-13 17:24:44 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-13 17:24:44 +0000 |
commit | a736bb19e555730e26ad91c18d54306666456e00 (patch) | |
tree | e52582d07a669412843540673b90f2fd3dbd63a4 /bin/worker | |
parent | 8d087a5926d7a16af719c71b9682713886e77246 (diff) |
Load the protocol tests from the correct location.
Diffstat (limited to 'bin/worker')
-rwxr-xr-x | bin/worker | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -1,4 +1,4 @@ -#!/usr/bin/ruby +#!/usr/bin/ruby -Ilib/ -I../lib/ # # This script will pull tests to complete from the Beanstalk Queue, # where they will be found in JSON form, and executes them. @@ -22,15 +22,16 @@ require 'mauve/proto' # # Implementation of our protocol tests. # -require 'tests/ftp' -require 'tests/http' -require 'tests/https' -require 'tests/jabber' -require 'tests/ldap' -require 'tests/ping' -require 'tests/rsync' -require 'tests/smtp' -require 'tests/ssh' +require 'custodian/protocol-tests/ftp.rb' +require 'custodian/protocol-tests/http.rb' +require 'custodian/protocol-tests/https.rb' +require 'custodian/protocol-tests/jabber.rb' +require 'custodian/protocol-tests/ldap.rb' +require 'custodian/protocol-tests/ping.rb' +require 'custodian/protocol-tests/rsync.rb' +require 'custodian/protocol-tests/smtp.rb' +require 'custodian/protocol-tests/ssh.rb' + |