Ejemplo n.º 1
0
    def test_match_string(self):
        MAT = SourceString('hello world\ntesting stuff')

        assert MAT.match_string('hello', 1) == True
        assert MAT.match_string('hello') == True
        assert MAT.match_string('hel', 1) == False
        assert MAT.match_string('hel') == True
        assert MAT.match_string('hello world', 1) == False
        assert MAT.match_string('hello world') == True