File: tests.py

package info (click to toggle)
python-nose-exclude 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 160 kB
  • sloc: python: 331; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
import unittest


class UnitTests(unittest.TestCase):
    def test_a(self):
        assert True

    def test_b(self):
        assert True


def test_c():
    assert True