Ejemplo n.º 1
0
    def test_has_space(self):
        SRC = SourceString('hello world')

        assert SRC.has_space() == True
        assert SRC.has_space(11) == True
        assert SRC.has_space(12) == False
        SRC.eat_length(11)

        assert SRC.has_space() == False