Total Complexity | 3 |
Total Lines | 79 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | class SqliteCompilerTest extends TestCase |
||
10 | { |
||
11 | public $fixtures = [ |
||
12 | 'plugin.Lampager\\Cake.Posts', |
||
13 | ]; |
||
14 | |||
15 | public function setUp() |
||
16 | { |
||
17 | $config = ConnectionManager::getConfig('test'); |
||
18 | $this->skipIf(strpos($config['driver'], 'Sqlite') === false, 'Not using Sqlite'); |
||
19 | } |
||
20 | |||
21 | public function testSelect() |
||
40 | } |
||
41 | |||
42 | public function testUnion() |
||
90 |