1
0
mirror of https://github.com/pybind/pybind11.git synced 2025-03-03 21:13:20 +00:00
pybind11/tests/test_wip.py
2024-06-29 11:09:03 -07:00

13 lines
211 B
Python

from __future__ import annotations
from pybind11_tests import wip as m
def test_doc():
assert m.__doc__ == "WIP"
def test_some_type_ctor():
obj = m.SomeType()
assert isinstance(obj, m.SomeType)