Further migration toward new xmlrcp code; fixed problem with unicode Fault.faultString; fixed problem where ServerProxy method was not called correctly

This commit is contained in:
Jason Gerard DeRose
2009-01-22 15:41:54 -07:00
committed by Rob Crittenden
parent 9f48612a56
commit 24b6cb89d4
10 changed files with 108 additions and 32 deletions

View File

@@ -335,6 +335,7 @@ class test_Param(ClassChecker):
o = Subclass('my_param')
for value in NULLS:
assert o.convert(value) is None
assert o.convert(None) is None
for value in okay:
assert o.convert(value) is value
@@ -821,6 +822,7 @@ class test_Str(ClassChecker):
assert e.name == 'my_str'
assert e.index == 18
assert_equal(e.error, u'must be Unicode text')
assert o.convert(None) is None
def test_rule_minlength(self):
"""