Skip to content

Commit b0c84bc

Browse files
committed
tests: Added Python Docstring to test new support
1 parent c629aca commit b0c84bc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/django_example/app/tests.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,13 @@
44
# Create your tests here.
55
class DummyTestCase(TestCase):
66
def test_pass(self):
7+
"""Test Pass"""
8+
pass
9+
10+
def test_negative_comment1(self):
11+
"""Use a close comment XML tag -->"""
12+
pass
13+
14+
def test_negative_comment2(self):
15+
"""Check XML tag </testsuites>"""
716
pass

0 commit comments

Comments
 (0)