1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/ext/sqlite/tests/001.phpt
Wez Furlong 6726111972 Import our own home-grown sqlite extension.
# This took less than 2 hours to implement "by hand"!
2003-04-17 01:29:45 +00:00

25 lines
566 B
PHP

--TEST--
Check for sqlite presence
--SKIPIF--
<?php if (!extension_loaded("sqlite")) print "skip"; ?>
--POST--
--GET--
--INI--
--FILE--
<?php
echo "sqlite extension is available";
/*
you can add regression tests for your extension here
the output of your test code has to be equal to the
text in the --EXPECT-- section below for the tests
to pass, differences between the output and the
expected text are interpreted as failure
see php4/README.TESTING for further information on
writing regression tests
*/
?>
--EXPECT--
sqlite extension is available