Exemplo n.º 1
0
 def test_none(self):
     assert not match("")
Exemplo n.º 2
0
 def test_exact(self):
     assert match("Fishing Bobber")
Exemplo n.º 3
0
 def test_distanceTooLargeDefault(self):
     assert not match("Fishing mmmmmm")
Exemplo n.º 4
0
 def test_distanceTooLargeCustom(self):
     assert not match("Fishing mmmmmm", threshold=4)
Exemplo n.º 5
0
 def test_maxDistanceCustom(self):
     assert match("Fishing m", threshold=6)
     assert match("Fishing mmmmmm", threshold=6)
Exemplo n.º 6
0
 def test_maxDistanceDefault(self):
     assert match("Fishing B")
     assert match("Fishing Bmmmmm")
Exemplo n.º 7
0
 def test_extraMultiline(self):
     assert match("""
         this is a multiline string that contains\n
         the target Fishing Bobber text along\n
         with some other text that doesn't matter
     """)
Exemplo n.º 8
0
 def test_oneTypo(self):
     assert match("Fishing Gobber")
Exemplo n.º 9
0
 def test_extra(self):
     assert match("some text Fishing Bobber some text")