blob: 9ad04e092f16a9be509acad1ff0ea54d02e6a79f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import unittest
class Something(unittest.TestCase):
def test_something(self):
pass
class TestTwo:
def __repr__(self):
return 'TestTwo'
def test_whatever(self):
pass
|