(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), |
| 1929 | Signature) |
| 1930 | |
| 1931 | def test_when_sig(self): |
| 1932 | s = self.add.s() |
nothing calls this directly
no test coverage detected