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   A

Complexity

Total Complexity 2

Size/Duplication

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

2 Methods

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