Test partial() with bound/unbound methods.

This commit is contained in:
Raymond Hettinger 2005-03-11 06:48:49 +00:00
parent a1a992c0a0
commit 26e512a04f
1 changed files with 7 additions and 1 deletions

View File

@ -133,7 +133,13 @@ class TestPartial(unittest.TestCase):
f = None
self.assertRaises(ReferenceError, getattr, p, 'func')
def test_with_bound_and_unbound_methods(self):
data = map(str, range(10))
join = self.thetype(str.join, '')
self.assertEqual(join(data), '0123456789')
join = self.thetype(''.join)
self.assertEqual(join(data), '0123456789')
class PartialSubclass(functional.partial):
pass