Adafruit_CircuitPython_PIOASM/tests/test_pseudo.py
KB Sriram 3e6a8bc392 Add type annotations for library and tests.
Verified that `mypy --strict adafruit_pioasm.py tests` runs without
errors.

Fixes: https://github.com/adafruit/Adafruit_CircuitPython_PIOASM/issues/24
2024-05-27 12:30:52 -07:00

13 lines
276 B
Python

# SPDX-FileCopyrightText: 2021 Jeff Epler, written for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
Tests pseudo-ops
"""
from pytest_helpers import assert_pio_kwargs
def test_offset() -> None:
assert_pio_kwargs(".origin 7", offset=7, sideset_enable=False)