If we just made test- tables as duplicates of other tables we wouldn't need to deal with a separate database. We would just need to add a few lines to the database setup, e.g. CREATE TABLE test_connections SELECT * FROM connections; and then add an option to db.connect telling it to prefix all tables in queries with test_.
If we just made
test-
tables as duplicates of other tables we wouldn't need to deal with a separate database. We would just need to add a few lines to the database setup, e.g.CREATE TABLE test_connections SELECT * FROM connections;
and then add an option todb.connect
telling it to prefix all tables in queries withtest_
.