8 lines
103 B
Python
8 lines
103 B
Python
import pytest
|
|
xfail = pytest.mark.xfail
|
|
|
|
|
|
@xfail()
|
|
def test_run_cmd():
|
|
raise NotImplementedError()
|