Add test data
This commit is contained in:
8
tests/test_code.py
Normal file
8
tests/test_code.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import pytest
|
||||
|
||||
from . import code
|
||||
|
||||
|
||||
@pytest.mark.parametrize("arg, expected", [(None, "a")])
|
||||
def test_code(arg, expected):
|
||||
assert code.code(arg) == expected
|
||||
Reference in New Issue
Block a user