8 lines
140 B
Python
8 lines
140 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.xfail
|
|
def test_tests_are_implemented():
|
|
print("Yyou have not implemented any tests yet.")
|
|
assert False
|