12 lines
383 B
Python
12 lines
383 B
Python
from idea194_attractorforge_verified_attractor.cli import _default_spec
|
|
|
|
|
|
def test_default_specs_have_expected_shapes() -> None:
|
|
motion = _default_spec("s1", "motion_manifold")
|
|
bio = _default_spec("s2", "bio_basin")
|
|
|
|
assert len(motion.target_state) == 2
|
|
assert len(bio.target_state) == 3
|
|
assert motion.kind == "motion_manifold"
|
|
assert bio.kind == "bio_basin"
|