ai-content-maker/.venv/Lib/site-packages/cymem/tests/test_import.py

13 lines
263 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
# This is a very weak test, but testing Cython code can be hard. So, at least check
# we can create the object...
from cymem.cymem import Pool, Address
def test_pool():
mem = Pool()
assert mem.size == 0
def test_address():
address = Address(1, 2)