The docs (README and tutorial section 'Seed the Database') recommend users set up their test environment with db:test:prepare.
However, automatically now during testing, Rails itself does db:test:prepare, as revealed by bundle exec rake --trace. So, this step in the docs doesn't add anything.
This is similar to an issue in another Rails Example App.
The docs (README and tutorial section 'Seed the Database') recommend users set up their test environment with
db:test:prepare
.However, automatically now during testing, Rails itself does
db:test:prepare
, as revealed bybundle exec rake --trace
. So, this step in the docs doesn't add anything.This is similar to an issue in another Rails Example App.