GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

TestUkmdbGraph.test_ver()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3

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 3
rs 10
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
"""
5
test_ukmdb_graph
6
----------------------------------
7
8
Tests for `ukmdb_graph` module.
9
"""
10
11
from unittest import TestCase
12
import ukmdb_graph
13
from ukmdb_graph import graph
14
15
16
class TestUkmdbGraph(TestCase):
17
18
    @classmethod
19
    def setup_class(cls):
20
        pass
21
22
    def test_something(self):
23
        pass
24
25
    def test_ver(self):
26
        self.assertEqual(graph.get_mod_version(),
27
                         ukmdb_graph.__version__)
28
29
    @classmethod
30
    def teardown_class(cls):
31
        pass
32