Michael Merickel
2018-10-17 e14661417e7ceb50d5cf83bbd6abd6b133e473ba
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():  # pragma: no cover
            return 'OK'
 
        self.assertFalse(is_unbound_method(func))
 
 
class OldStyle:
    def run(self):  # pragma: no cover
        return 'OK'
 
 
class NewStyle(object):
    def run(self):  # pragma: no cover
        return 'OK'