我更新了我的database.yml文件,如下所示:
test:
adapter: postgresql
encoding: unicode
database: startpoint_test
hostname: localhost
pool: 5
username: postgres
password: password
development:
adapter: postgresql
encoding: unicode
database: startpoint_dev
pool: 5
username: postgres
password: password
现在看来,当我运行我的应用程序并注册一个新用户时,开发数据库不会将新用户插入其中......
所有测试都通过了注册新用户
答案 0 :(得分:0)
您是否尝试过使用
rake db:create:all
然后
rake db:test:prepare