diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/custodian-parse-execute | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/bin/custodian-parse-execute b/bin/custodian-parse-execute index 5ef48a7..22c29b8 100755 --- a/bin/custodian-parse-execute +++ b/bin/custodian-parse-execute @@ -38,7 +38,9 @@ end  begin    c = ProtocolTest.create( txt ) -  puts "created object: #{c.to_s}" +  puts "created object of class type #{c.class}" +  puts ".to_s    : #{c.to_s}" +  puts ".to_json : #{c.to_json}"    if ( c.run_test )      puts "Test succeeded" | 
