File: tests.py

package info (click to toggle)
python-xmlrunner 3.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 420 kB
  • sloc: python: 2,074; makefile: 216
file content (16 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from django.test import TestCase


# Create your tests here.
class DummyTestCase(TestCase):
    def test_pass(self):
        """Test Pass"""
        pass

    def test_negative_comment1(self):
        """Use a close comment XML tag -->"""
        pass

    def test_negative_comment2(self):
        """Check XML tag </testsuites>"""
        pass