(self)
| 162 | self.assertEqual(b.y, 2) |
| 163 | |
| 164 | def test_cannot_instantiate(self): |
| 165 | with self.assertRaises(TypeError): |
| 166 | Any() |
| 167 | with self.assertRaises(TypeError): |
| 168 | type(Any)() |
| 169 | |
| 170 | def test_any_works_with_alias(self): |
| 171 | # These expressions must simply not fail. |
nothing calls this directly
no test coverage detected