Add tests/test_wip.cpp,py (empty)

This commit is contained in:
Ralf W. Grosse-Kunstleve 2024-06-29 10:55:25 -07:00
parent 8b0b377fc1
commit ced85c95b1
2 changed files with 10 additions and 0 deletions

3
tests/test_wip.cpp Normal file
View File

@ -0,0 +1,3 @@
#include "pybind11_tests.h"
TEST_SUBMODULE(wip, m) { m.attr("__doc__") = "WIP"; }

7
tests/test_wip.py Normal file
View File

@ -0,0 +1,7 @@
from __future__ import annotations
from pybind11_tests import wip as m
def test_doc():
assert m.__doc__ == "WIP"