()
| 502 | |
| 503 | # https://github.com/pybind/pybind11/issues/1624 |
| 504 | def test_base_and_derived_nested_scope(): |
| 505 | assert issubclass(m.DerivedWithNested, m.BaseWithNested) |
| 506 | assert m.BaseWithNested.Nested != m.DerivedWithNested.Nested |
| 507 | assert m.BaseWithNested.Nested.get_name() == "BaseWithNested::Nested" |
| 508 | assert m.DerivedWithNested.Nested.get_name() == "DerivedWithNested::Nested" |
| 509 | |
| 510 | |
| 511 | def test_register_duplicate_class(): |
nothing calls this directly
no outgoing calls
no test coverage detected