--- /dev/null
+SELECT * FROM mytable; -- line-comment"
+
+INSERT INTO /* inline comment */ mytable VALUES (1, 'ัะตัั');
+
+
+INSERT INTO "MyTable" ("Id", "Name")
+VALUES (1, 'one');
+
+INSERT INTO mytable VALUES (1, 'one');
+INSERT INTO mytable VALUES (2, 'two');
+
+INSERT INTO mytable (id, name) VALUES (1, 'one');
+INSERT INTO mytable (id, name) VALUES (2, 'two');
+
+-- The end
flake8
createdb
dropdb
+ cmp
rm
[general]
commands =
python -m pytest --cov=sqlconvert
+ mysql2sql demo/demo.sql test.out
+ cmp -s tests/mysql2sql/test.out test.out
+ rm test.out
[testenv:py26]
commands = {[general]commands}