Example #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
Example #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
Example #3
0
 def test_new_style_bound(self):
     self.assertFalse(is_unbound_method(NewStyle().run))
Example #4
0
    def test_normal_func_unbound(self):
        def func():  # pragma: no cover
            return 'OK'

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

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