blob: 46fc7d94456064de6c4d9b1773f5d64ad471ad23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import unittest
from pyramid.compat import is_unbound_method
class TestUnboundMethods(unittest.TestCase):
def test_old_style_bound(self):
self.assertFalse(is_unbound_method(OldStyle().run))
def test_new_style_bound(self):
self.assertFalse(is_unbound_method(NewStyle().run))
def test_old_style_unbound(self):
self.assertTrue(is_unbound_method(OldStyle.run))
def test_new_style_unbound(self):
self.assertTrue(is_unbound_method(NewStyle.run))
def test_normal_func_unbound(self):
def func():
return 'OK'
self.assertFalse(is_unbound_method(func))
class OldStyle:
def run(self):
return 'OK'
class NewStyle(object):
def run(self):
return 'OK'
|