(self)
| 1079 | MODE = 'func' |
| 1080 | |
| 1081 | def test_stateless(self): |
| 1082 | self.assert_roundtrip_equal([ |
| 1083 | *defs.STATELESS_FUNCTIONS, |
| 1084 | # Generators can be stateless too. |
| 1085 | *defs.FUNCTION_LIKE, |
| 1086 | ]) |
| 1087 | |
| 1088 | def test_not_stateless(self): |
| 1089 | self.assert_not_shareable([ |
nothing calls this directly
no test coverage detected