summaryrefslogtreecommitdiff
path: root/test/xmlrpc/test_parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/xmlrpc/test_parser.rb')
-rw-r--r--test/xmlrpc/test_parser.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/xmlrpc/test_parser.rb b/test/xmlrpc/test_parser.rb
index 1c50eaed46..0619e87e67 100644
--- a/test/xmlrpc/test_parser.rb
+++ b/test/xmlrpc/test_parser.rb
@@ -65,6 +65,12 @@ module GenericParserTest
assert_equal(fault.faultCode, 4)
assert_equal(fault.faultString, "an error message")
end
+
+ def test_fault_message
+ fault = XMLRPC::FaultException.new(1234, 'an error message')
+ assert_equal('an error message', fault.to_s)
+ assert_equal('#<XMLRPC::FaultException: an error message>', fault.inspect)
+ end
end
# create test class for each installed parser