mirror of
https://github.com/pybind/pybind11.git
synced 2025-01-20 09:52:36 +00:00
12 lines
216 B
Python
12 lines
216 B
Python
import pytest
|
|
|
|
import pybind11_tests.odr_guard_1 as m
|
|
|
|
|
|
def test_type_mrc_to_python():
|
|
assert m.type_mrc_to_python() == 1111
|
|
|
|
|
|
def test_type_mrc_from_python():
|
|
assert m.type_mrc_from_python("ignored") == 111
|