added unit tests for active dataprovider and fixed query tests

This commit is contained in:
Carsten Brandt
2013-11-13 19:35:44 +01:00
parent 65338972c7
commit 9448c3d471
8 changed files with 154 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace yiiunit\framework\db\pgsql;
use yiiunit\framework\data\ActiveDataProviderTest;
/**
* @group db
* @group pgsql
* @group data
*/
class PostgreSQLActiveDataProviderTest extends ActiveDataProviderTest
{
public $driverName = 'pgsql';
}