blob: da28d91950cde2d0f4912399be7d975d7a492aa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
SQLite
--SKIPIF--
<?php # vim:ft=php
if (!extension_loaded('pdo_sqlite')) print 'skip'; ?>
--REDIRECTTEST--
return array(
'ENV' => array(
'PDOTEST_DSN' => 'sqlite::memory:'
),
'TESTS' => __DIR__ . '/ext/pdo/tests'
);
|