Issues (5)

tests/test_traceroutedb.py (2 issues)

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
The name traceroutedb does not seem to exist in module traceroutedb.
Loading history...
Unused traceroutedb imported from traceroutedb
Loading history...
14
15
16
class TestTraceroutedb(unittest.TestCase):
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__':
28
    unittest.main()
29