Completed
Push — master ( 748306...c813f6 )
by Ramon
18s queued 12s
created

tests.test_types.test_complex   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A TestComplex.test_repr() 0 2 1
1
from unittest import TestCase
2
3
from nptyping import Complex128
4
5
6
class TestComplex(TestCase):
7
8
    def test_repr(self):
9
        self.assertEqual('Complex128', repr(Complex128))
10