| 9 | namespace test_cpp_conduit { |
| 10 | |
| 11 | TEST_SUBMODULE(cpp_conduit, m) { |
| 12 | m.attr("PYBIND11_PLATFORM_ABI_ID") = py::bytes(PYBIND11_PLATFORM_ABI_ID); |
| 13 | m.attr("cpp_type_info_capsule_Traveler") |
| 14 | = py::capsule(&typeid(Traveler), typeid(std::type_info).name()); |
| 15 | m.attr("cpp_type_info_capsule_int") = py::capsule(&typeid(int), typeid(std::type_info).name()); |
| 16 | |
| 17 | wrap_traveler(m); |
| 18 | wrap_lonely_traveler(m); |
| 19 | } |
| 20 | |
| 21 | } // namespace test_cpp_conduit |
| 22 | } // namespace pybind11_tests |
nothing calls this directly
no test coverage detected