pyo3/pytests/tests/test_subclassing.py
2023-10-26 21:04:49 +01:00

13 lines
259 B
Python

from pyo3_pytests.subclassing import Subclassable
class SomeSubClass(Subclassable):
def __str__(self):
return "SomeSubclass"
def test_subclassing():
a = SomeSubClass()
assert str(a) == "SomeSubclass"
assert type(a) is SomeSubClass