I upgraded my rails version to 4.1.1 from 4.0.4. Whenever I run rake test I get every test having this error:
ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "roles_users" does not exist
LINE 1: DELETE FROM "roles_users"
^
: DELETE FROM "roles_users"
My user controller has and belongs to many roles
has_and_belongs_to_many :some_names,
class_name: "Role",
join_table: "some_names_users"
So it should not be looking for roles_users as a table, but seems to be in the fixtures for my tests.
I am using minitest 5.3.4. I am not using the gem turn.