summaryrefslogtreecommitdiff
path: root/t/test-factory.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-22 15:40:07 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-22 15:40:07 +0000
commit9939c9f857d63e299a140b0e0dadc1b488129579 (patch)
treeec730da0357dac37cc82688dfbfd6351b6b6c1a0 /t/test-factory.rb
parent918d964adee64d0a14fc80797def1070c39061b3 (diff)
"ftp://ftp.example.com/ must run ftp" + "rsync://...../" are now both permitted.
Diffstat (limited to 't/test-factory.rb')
-rwxr-xr-xt/test-factory.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/test-factory.rb b/t/test-factory.rb
index 4a941b2..7ef44b1 100755
--- a/t/test-factory.rb
+++ b/t/test-factory.rb
@@ -47,6 +47,11 @@ class TestTestFactory < Test::Unit::TestCase
assert( Custodian::TestFactory.create( "ftp://ftp.example.com/ must run ftp." ).target() == "ftp.example.com" )
+
+ assert( Custodian::TestFactory.create( "rsync.example.com must run rsync." ).target() == "rsync.example.com" )
+ assert( Custodian::TestFactory.create( "rsync://rsync.example.com/ must run rsync." ).target() == "rsync.example.com" )
+
+
end