Completed
Push — master ( 159278...dbe2dc )
by Jerome
01:24
created

TestMain.teardown_class()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
cc 1
c 3
b 0
f 0
dl 0
loc 3
rs 10
1
class TestMain(object):
2
3
    @classmethod
4
    def setup_class(cls):
5
        pass
6
7
    def test_something(self):
8
        pass
9
10
11
    @classmethod
12
    def teardown_class(cls):
13
        pass
14
15