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.
Completed
Pull Request — master (#16)
by samuel
53s
created

paystackapi.tests.TestInstance.setUp()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 2
rs 10
1
"""Script defined to test the Class instance."""
2
3
4
import unittest
5
6
import mock
7
8
9
class TestInstance(unittest.TestCase):
10
    """Method defined to test transaction instance."""
11
12
    def setUp(self):
13
        pass
14
15
    def test_transaction(self):
16
        pass
17
18