summaryrefslogtreecommitdiffstats
path: root/tests/Components/CreateDefinitionTest.php
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-03-21 14:33:23 +0100
committerMichal Čihař <michal@cihar.com>2016-03-21 14:33:23 +0100
commitcb435b07eb8b8d0ee47c69b3519a1f40633f8180 (patch)
tree9f3f15bb4e4afda8bb6192ff3bb91465cc417119 /tests/Components/CreateDefinitionTest.php
parent9d8ae92a7c9e489eac4c7e4fb67b90c4f7a145b2 (diff)
downloadsql-parser-cb435b07eb8b8d0ee47c69b3519a1f40633f8180.zip
sql-parser-cb435b07eb8b8d0ee47c69b3519a1f40633f8180.tar.gz
sql-parser-cb435b07eb8b8d0ee47c69b3519a1f40633f8180.tar.bz2
Move test to better place
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tests/Components/CreateDefinitionTest.php')
-rw-r--r--tests/Components/CreateDefinitionTest.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/Components/CreateDefinitionTest.php b/tests/Components/CreateDefinitionTest.php
index 4d0094d..a7b7f86 100644
--- a/tests/Components/CreateDefinitionTest.php
+++ b/tests/Components/CreateDefinitionTest.php
@@ -64,15 +64,4 @@ class CreateDefinitionTest extends TestCase
CreateDefinition::build($parser->statements[0]->fields[1])
);
}
-
- public function testBuildSelect()
- {
- $parser = new Parser(
- 'CREATE TABLE new_tbl SELECT * FROM orig_tbl'
- );
- $this->assertEquals(
- 'CREATE TABLE new_tbl SELECT * FROM orig_tbl ',
- $parser->statements[0]->build()
- );
- }
}