From 4533b4fe588d174b12ce97d18ed0c10189c32b45 Mon Sep 17 00:00:00 2001 From: Yevhenii Shapovalov Date: Thu, 16 Nov 2017 12:27:52 +0200 Subject: add tests with standart test interface --- tests/httpd-php-mysql-sanity-test/php_mysql_test.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/httpd-php-mysql-sanity-test/php_mysql_test.sql (limited to 'tests/httpd-php-mysql-sanity-test/php_mysql_test.sql') diff --git a/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql b/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql new file mode 100644 index 0000000..ad931ac --- /dev/null +++ b/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql @@ -0,0 +1,6 @@ + +CREATE DATABASE php_mysql_test; +USE php_mysql_test; + +CREATE TABLE foobar (name VARCHAR(10), value INTEGER); +INSERT INTO foobar VALUES("fish", 42); -- cgit