File size: 313 Bytes
e8055cf | 1 2 3 4 5 6 7 8 9 10 | """Tests for encoder/render.py -- spatial-code rendering entry point."""
from encoder import render
def test_render_exposes_tracking_and_format_dimensions():
variables = render.write_spatial_code_for.__code__.co_varnames
assert "tracking" in variables
assert "spatial_code_format" not in variables
|