If you try to drop a table that doesn't exist, the message I indicated in the subject line is sent to the shell. We execute DROP TABLE IF EXISTS when drop_table is called, so we don't care if it exists or not before we drop it.
This warning comes from the pg gem, so I'm not sure if we can silence it, but it'd be nice not to have it cluttering up our test output.
If you try to drop a table that doesn't exist, the message I indicated in the subject line is sent to the shell. We execute
DROP TABLE IF EXISTS
whendrop_table
is called, so we don't care if it exists or not before we drop it.This warning comes from the
pg
gem, so I'm not sure if we can silence it, but it'd be nice not to have it cluttering up our test output.