summaryrefslogtreecommitdiff
path: root/test/xmlrpc/test_parser.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-03 11:41:53 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-03 11:41:53 +0000
commitddf1d3aaed4d07d8fb00f4c3a81b6a83bd0225e8 (patch)
tree9069d4a6a6733a44e05f58f7ddea265684154e00 /test/xmlrpc/test_parser.rb
parent438a91c0720ac840dedb64085a8c906f855c7422 (diff)
* test/xmlrpc: Wrap definitions by TestXMLRPC module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/xmlrpc/test_parser.rb')
-rw-r--r--test/xmlrpc/test_parser.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/xmlrpc/test_parser.rb b/test/xmlrpc/test_parser.rb
index 0619e87e67..5591645cd4 100644
--- a/test/xmlrpc/test_parser.rb
+++ b/test/xmlrpc/test_parser.rb
@@ -3,6 +3,7 @@ require 'xmlrpc/datetime'
require "xmlrpc/parser"
require 'yaml'
+module TestXMLRPC
module GenericParserTest
def datafile(base)
File.join(File.dirname(__FILE__), "data", base)
@@ -89,3 +90,4 @@ XMLRPC::XMLParser.each_installed_parser do |parser|
end
}
end
+end