add files for modularity-testing-framework based tests

Currently there seems to be an issue with passing the test command line
to the shell in the container, though.
This commit is contained in:
Nils Philippsen 2017-05-19 19:31:05 +02:00
commit 9c069c4141
2 changed files with 44 additions and 0 deletions

5
tests/test.sql Normal file
View file

@ -0,0 +1,5 @@
CREATE TABLE mtftest (id SERIAL NOT NULL, anything VARCHAR(255) NOT NULL);
INSERT INTO mtftest (anything) VALUES ('something');
SELECT anything FROM mtftest;