puppy-hf-marimo / notebooks /test_multiplier.py
liquidcarbon's picture
Rename notebooks/test_multiplier to notebooks/test_multiplier.py
417411a verified
raw
history blame contribute delete
219 Bytes
import asyncio
from multiplier import app
result = asyncio.run(app.embed())
defs = result.defs._dict # all variables as they exist in a current state
def test_z_is_defined():
z = defs.get("z")
assert z
print(z)