Files
coverage-comment-action/tests/test_code.py

9 lines
161 B
Python
Raw Normal View History

2021-07-24 00:06:05 +02:00
import pytest
from . import code
@pytest.mark.parametrize("arg, expected", [(None, "a")])
def test_code(arg, expected):
assert code.code(arg) == expected