def test_not_startswith_firebird(self): self.assert_compile( ~column('x').startswith('y'), "x NOT STARTING WITH :x_1", checkparams={'x_1': 'y'}, dialect=firebird.dialect() )
def test_not_startswith_firebird(self): self.assert_compile( ~column("x").startswith("y"), "x NOT STARTING WITH :x_1", checkparams={"x_1": "y"}, dialect=firebird.dialect(), )