(self, obj)
| 87 | |
| 88 | @pytest.mark.parametrize('obj', (True, None, "str", b'bytes', 123, 1.23)) |
| 89 | def test_not_callable(self, obj): |
| 90 | assert not is_simple_callable(obj) |
| 91 | |
| 92 | def test_4602_regression(self): |
| 93 | from django.db import models |
nothing calls this directly
no test coverage detected