tests.test__remove_accents   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A AccentTest.test__remove_accents() 0 2 1
1
from unittest import TestCase
2
3
from pandoc_numbering import Numbered
4
5
6
class AccentTest(TestCase):
7
    def test__remove_accents(self):
8
        self.assertEqual(Numbered._remove_accents("Êà"), "Ea")
9