From 0971310be8093ab53b430ac5a8c7217ba8bf76a9 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Wed, 21 Nov 2012 23:34:23 +0000 Subject: Serialize and cosntruct neatly --- lib/custodian/protocoltest/ftp.rb | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'lib/custodian/protocoltest/ftp.rb') diff --git a/lib/custodian/protocoltest/ftp.rb b/lib/custodian/protocoltest/ftp.rb index 1d60e43..89b4a2b 100644 --- a/lib/custodian/protocoltest/ftp.rb +++ b/lib/custodian/protocoltest/ftp.rb @@ -12,6 +12,12 @@ class FTPTest < TCPTest + # + # The line from which we were constructed. + # + attr_reader :line + + # # The host to test against. # @@ -26,10 +32,17 @@ class FTPTest < TCPTest + # # Constructor # def initialize( line ) + + # + # Save the line + # + @line = line + # # Save the host # @@ -62,11 +75,7 @@ class FTPTest < TCPTest # Convert this class to JSON such that it may be serialized. # def to_json - hash = { - :test_type => 'ftp', - :test_target => @host, - :test_port => @port, - } + hash = { :line => @line } hash.to_json end -- cgit v1.2.1