9 lines
161 B
Python
9 lines
161 B
Python
import pytest
|
|
|
|
from . import code
|
|
|
|
|
|
@pytest.mark.parametrize("arg, expected", [(None, "a")])
|
|
def test_code(arg, expected):
|
|
assert code.code(arg) == expected
|