Files
yii2/tests/unit/framework/db/sqlite/SqliteCommandTest.php
Carsten Brandt 544e412af8 unit test cleanup
2013-09-06 15:03:25 +02:00

19 lines
440 B
PHP

<?php
namespace yiiunit\framework\db\sqlite;
use yiiunit\framework\db\CommandTest;
class SqliteCommandTest extends CommandTest
{
protected $driverName = 'sqlite';
public function testAutoQuoting()
{
$db = $this->getConnection(false);
$sql = 'SELECT [[id]], [[t.name]] FROM {{tbl_customer}} t';
$command = $db->createCommand($sql);
$this->assertEquals("SELECT \"id\", 't'.\"name\" FROM 'tbl_customer' t", $command->sql);
}
}