зеркало из https://github.com/github/ruby.git
* fixed test cases so that they can be run from any directory
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
befb362acf
Коммит
f5c2af51db
|
@ -1,4 +1,3 @@
|
||||||
$LOAD_PATH.unshift '../../lib'
|
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require "xmlrpc/datetime"
|
require "xmlrpc/datetime"
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
$LOAD_PATH.unshift '../../lib'
|
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require "xmlrpc/create"
|
require "xmlrpc/create"
|
||||||
require "xmlrpc/parser"
|
require "xmlrpc/parser"
|
||||||
require "xmlrpc/config"
|
require "xmlrpc/config"
|
||||||
|
|
||||||
#XMLRPC::Config.const_set(ENABLE_NIL_CREATE, true)
|
|
||||||
#XMLRPC::Config.const_set(ENABLE_NIL_PARSER, true)
|
|
||||||
|
|
||||||
class Test_Features < Test::Unit::TestCase
|
class Test_Features < Test::Unit::TestCase
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
$LOAD_PATH.unshift '../../lib'
|
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require "xmlrpc/marshal"
|
require "xmlrpc/marshal"
|
||||||
|
|
||||||
|
|
|
@ -1,29 +1,28 @@
|
||||||
$LOAD_PATH.unshift '../../lib'
|
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
require 'xmlrpc/datetime'
|
require 'xmlrpc/datetime'
|
||||||
require "xmlrpc/parser"
|
require "xmlrpc/parser"
|
||||||
|
|
||||||
module GenericParserTest
|
module GenericParserTest
|
||||||
|
def datafile(base)
|
||||||
|
File.join(File.dirname(__FILE__), "data", base)
|
||||||
|
end
|
||||||
|
|
||||||
|
def load_data(name)
|
||||||
|
[File.read(datafile(name) + ".xml"), File.read(datafile(name) + ".expected").chomp]
|
||||||
|
end
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@xml1 = File.read("data/xml1.xml")
|
@xml1, @expected1 = load_data('xml1')
|
||||||
@expected1 = File.read("data/xml1.expected").chomp
|
@xml2, @expected2 = load_data('bug_covert')
|
||||||
|
@xml3, @expected3 = load_data('bug_bool')
|
||||||
|
@xml4, @expected4 = load_data('value')
|
||||||
|
|
||||||
@xml2 = File.read("data/bug_covert.xml")
|
@cdata_xml, @cdata_expected = load_data('bug_cdata')
|
||||||
@expected2 = File.read("data/bug_covert.expected").chomp
|
|
||||||
|
|
||||||
@xml3 = File.read("data/bug_bool.xml")
|
@datetime_xml = File.read(datafile('datetime_iso8601.xml'))
|
||||||
@expected3 = File.read("data/bug_bool.expected").chomp
|
|
||||||
|
|
||||||
@xml4 = File.read("data/value.xml")
|
|
||||||
@expected4 = File.read("data/value.expected").chomp
|
|
||||||
|
|
||||||
@cdata_xml = File.read("data/bug_cdata.xml").chomp
|
|
||||||
@cdata_expected = File.read("data/bug_cdata.expected").chomp
|
|
||||||
|
|
||||||
@datetime_xml = File.read("data/datetime_iso8601.xml")
|
|
||||||
@datetime_expected = XMLRPC::DateTime.new(2004, 11, 5, 1, 15, 23)
|
@datetime_expected = XMLRPC::DateTime.new(2004, 11, 5, 1, 15, 23)
|
||||||
|
|
||||||
@fault_doc = File.read("data/fault.xml").to_s
|
@fault_doc = File.read(datafile('fault.xml'))
|
||||||
end
|
end
|
||||||
|
|
||||||
# test parseMethodResponse --------------------------------------------------
|
# test parseMethodResponse --------------------------------------------------
|
||||||
|
|
Загрузка…
Ссылка в новой задаче