diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-21 23:15:44 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-21 23:15:44 +0000 |
commit | 7d153d8f22fc767108103cd8fdfc056e2656b914 (patch) | |
tree | f56a9b3b97fb623d836d70363f84f913f1584011 /lib/custodian/protocoltest/rsync.rb | |
parent | 1e03e807d496d2c3cf92ff3429fe8d95427eb64c (diff) |
Added .to_json method to serialize our tests.
Diffstat (limited to 'lib/custodian/protocoltest/rsync.rb')
-rw-r--r-- | lib/custodian/protocoltest/rsync.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/custodian/protocoltest/rsync.rb b/lib/custodian/protocoltest/rsync.rb index 3b63465..c35758e 100644 --- a/lib/custodian/protocoltest/rsync.rb +++ b/lib/custodian/protocoltest/rsync.rb @@ -59,6 +59,21 @@ class RSYNCTest < TCPTest # + # Convert this class to JSON such that it may be serialized. + # + def to_json + hash = { + :test_type => 'rsync', + :test_target => @host, + :test_port => @port, + } + hash.to_json + end + + + + + # # Run the protocol test. # def run_test |