summaryrefslogtreecommitdiffstats
path: root/tests/parser/DeleteStatementTest.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-05-26 01:02:55 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-06-08 19:37:46 +0300
commit0a52978705d59c50f785f0f9cf537161046beb21 (patch)
tree00051de2f829f6b1f5c95c54da89be1f298b77a8 /tests/parser/DeleteStatementTest.php
downloadsql-parser-0a52978705d59c50f785f0f9cf537161046beb21.zip
sql-parser-0a52978705d59c50f785f0f9cf537161046beb21.tar.gz
sql-parser-0a52978705d59c50f785f0f9cf537161046beb21.tar.bz2
Initial commit.
Diffstat (limited to 'tests/parser/DeleteStatementTest.php')
-rw-r--r--tests/parser/DeleteStatementTest.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/parser/DeleteStatementTest.php b/tests/parser/DeleteStatementTest.php
new file mode 100644
index 0000000..dab28c7
--- /dev/null
+++ b/tests/parser/DeleteStatementTest.php
@@ -0,0 +1,10 @@
+<?php
+
+class DeleteStatementTest extends TestCase
+{
+
+ public function testDelete()
+ {
+ $this->runParserTest('parseDelete');
+ }
+}