(self)
| 1442 | self.fx = TypeFixture() |
| 1443 | |
| 1444 | def test_optional(self) -> None: |
| 1445 | t = UnionType.make_union([self.fx.a, self.fx.nonet]) |
| 1446 | self.assert_union_result(t, [self.fx.a, self.fx.nonet]) |
| 1447 | |
| 1448 | def test_two_instances(self) -> None: |
| 1449 | t = UnionType.make_union([self.fx.a, self.fx.b]) |
nothing calls this directly
no test coverage detected