IdentifierTest.test_identifier()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
from unittest import TestCase
2
3
from pandoc_numbering import Numbered
4
5
6
class IdentifierTest(TestCase):
7
    def test_identifier(self):
8
        self.assertEqual(Numbered.identifier("0123   Ê   à"), "e-a")
9