File size: 219 Bytes
08b733e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)