mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 21:52:18 +00:00
18 lines
155 B
Python
18 lines
155 B
Python
import pytest
|
|
|
|
|
|
def test_pass_1():
|
|
assert 1
|
|
|
|
|
|
def test_fail_1():
|
|
assert 0
|
|
|
|
|
|
def test_fail_2():
|
|
assert 0
|
|
|
|
|
|
def test_skip_1():
|
|
pytest.skip()
|