Exemplo n.º 1
0
 def test_does_not_match(self, line):
     assert match_tickets(line) == []
Exemplo n.º 2
0
 def test_matches_multiple_tickets(self, line):
     assert match_tickets(line) == ['1', '2', '3']
Exemplo n.º 3
0
 def test_matches(self, line):
     assert len(match_tickets(line)) > 0