| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| factory.py | |||||
| test_example.py | |||||
| testcase.py |
import unittest
class TestCase(unittest.TestCase):
def test_it(self):
"""This example exists for the test suite to have an in-package test."""
self.assertTrue(True)
| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| factory.py | |||||
| test_example.py | |||||
| testcase.py |