예제 #1
0
    def __call__(self, view):
        if is_unbound_method(view) and self.attr is None:
            raise ConfigurationError((
                'Unbound method calls are not supported, please set the class '
                'as your `view` and the method as your `attr`'))

        if inspect.isclass(view):
            view = self.map_class(view)
        else:
            view = self.map_nonclass(view)
        return view
예제 #2
0
    def __call__(self, view):
        if is_unbound_method(view) and self.attr is None:
            raise ConfigurationError((
                'Unbound method calls are not supported, please set the class '
                'as your `view` and the method as your `attr`'
            ))

        if inspect.isclass(view):
            view = self.map_class(view)
        else:
            view = self.map_nonclass(view)
        return view
예제 #3
0
 def test_new_style_bound(self):
     self.assertFalse(is_unbound_method(NewStyle().run))
예제 #4
0
    def test_normal_func_unbound(self):
        def func():  # pragma: no cover
            return 'OK'

        self.assertFalse(is_unbound_method(func))
예제 #5
0
 def test_old_style_bound(self):
     self.assertFalse(is_unbound_method(OldStyle().run))
예제 #6
0
 def test_old_style_unbound(self):
     self.assertTrue(is_unbound_method(OldStyle.run))
예제 #7
0
 def test_new_style_unbound(self):
     self.assertTrue(is_unbound_method(NewStyle.run))
예제 #8
0
 def test_new_style_bound(self):
     self.assertFalse(is_unbound_method(NewStyle().run))
예제 #9
0
 def test_old_style_bound(self):
     self.assertFalse(is_unbound_method(OldStyle().run))
예제 #10
0
    def test_normal_func_unbound(self):
        def func(): return 'OK'

        self.assertFalse(is_unbound_method(func))
예제 #11
0
 def test_new_style_unbound(self):
     self.assertTrue(is_unbound_method(NewStyle.run))
예제 #12
0
 def test_old_style_unbound(self):
     self.assertTrue(is_unbound_method(OldStyle.run))