(self)
| 1922 | class test_maybe_signature(CanvasCase): |
| 1923 | |
| 1924 | def test_is_None(self): |
| 1925 | assert maybe_signature(None, app=self.app) is None |
| 1926 | |
| 1927 | def test_is_dict(self): |
| 1928 | assert isinstance(maybe_signature(dict(self.add.s()), app=self.app), |
nothing calls this directly
no test coverage detected