Skip to content

Commit 2d6b59c

Browse files
committed
Add a test for Issue #5.
1 parent daee3bd commit 2d6b59c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_01_marker.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
import pytest
55

66

7+
def test_marker_registered(ctestdir):
8+
result = ctestdir.runpytest("--markers")
9+
result.stdout.fnmatch_lines("""
10+
@pytest.mark.dependency*
11+
""")
12+
13+
714
def test_marker(ctestdir):
815
ctestdir.makepyfile("""
916
import pytest

0 commit comments

Comments
 (0)