Pheasant\Tests\BindingTest::testBindIntoAQueryWithEscapedQuotesInStrings PHP Method

testBindIntoAQueryWithEscapedQuotesInStrings() public method

    public function testBindIntoAQueryWithEscapedQuotesInStrings()
    {
        $binder = new Binder();
        $this->assertEquals($binder->bind("name='\\'7r' and llamas=?", array(24)), "name='\\'7r' and llamas='24'");
        $this->assertEquals($binder->bind("name='\\'7r\\\\' and another='test question?' and llamas=?", array(24)), "name='\\'7r\\\\' and another='test question?' and llamas='24'");
        $this->assertEquals($binder->bind("name='\\'7r\\\\' and x='\\'7r' and llamas=?", array(24)), "name='\\'7r\\\\' and x='\\'7r' and llamas='24'");
    }