lithium\tests\cases\data\source\DatabaseTest::testRawOptionSettingWithNoResultResource PHP Method

testRawOptionSettingWithNoResultResource() public method

Verifies that setting options using a raw SQL string works, when the operation returns no result.
    public function testRawOptionSettingWithNoResultResource()
    {
        $expected = array();
        $result = $this->_db->read('SET SESSION group_concat_max_len = 100000;');
        $this->assertEqual($expected, $result);
    }
DatabaseTest