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

tests.TestTraceroutedb   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 10
Duplicated Lines 0 %
Metric Value
dl 0
loc 10
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A TestTraceroutedb.test_something() 0 2 1
A TestTraceroutedb.tearDown() 0 2 1
A TestTraceroutedb.setUp() 0 2 1
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