Completed
Push — master ( c5f393...12467b )
by Ryan
01:17
created

TestTraceroutedb.setUp()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
"""
5
test_traceroutedb
6
----------------------------------
7
8
Tests for `traceroutedb` module.
9
"""
10
11
import unittest
12
13
from traceroutedb import traceroutedb
0 ignored issues
show
Bug introduced by
The name traceroutedb does not seem to exist in module traceroutedb.
Loading history...
Unused Code introduced by
Unused traceroutedb imported from traceroutedb
Loading history...
14
15
16
class TestTraceroutedb(unittest.TestCase):
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable unittest does not seem to be defined.
Loading history...
17
18
    def setUp(self):
19
        pass
20
21
    def test_something(self):
22
        pass
23
24
    def tearDown(self):
25
        pass
26
27
if __name__ == '__main__':
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable __name__ does not seem to be defined.
Loading history...
28
    unittest.main()
29