Exemplo n.º 1
0
 def test_no_valid_glyph(self):
     block = ['E|----------|']
     self.assertIsNone(parse._find_next_glyph_index(block, 2))
Exemplo n.º 2
0
 def test_first(self):
     self.assertEqual(parse._find_next_glyph_index(self.block, 2), 5)
Exemplo n.º 3
0
 def test_last(self):
     self.assertEqual(parse._find_next_glyph_index(self.block, 24), 30)