Ejemplo n.º 1
0
    def test_count_indents_length(self):
        MAT = SourceString('  \tTest100')

        assert MAT.count_indents_length(2, 1) == (2, 3)
        assert MAT.count_indents_length(2) == (1, 2)