1
"""A sample test module."""
5
class SomeTest(unittest.TestCase):
6
"""This is a test class that doesn't do anything."""
8
def test_foo_handles_qux(self):
9
"""Objects should have only one responsibility."""
12
"""Do one thing and do it well."""
15
class AnotherTest(unittest.TestCase):