11 lines
186 B
Python
11 lines
186 B
Python
from __future__ import annotations
|
|
|
|
from .helper import hopper
|
|
|
|
|
|
def test_sanity() -> None:
|
|
im = hopper()
|
|
|
|
type_repr = repr(type(im.getim()))
|
|
assert "PyCapsule" in type_repr
|