Rails - 使用 PostgreSQL 安装 Cucumber
如何安装 Cucumber 以使用 PostgreSQL 而不是 SQLite?
谢谢
How can I install cucumber to use PostgreSQL instead of SQLite?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cucumber 与 Rails 使用数据库的方式无关。
您需要在
config/database.yml
文件中正确设置测试环境:您还需要在
Gemfile
中指定pg
gem代码>:Cucumber has nothing to do with how Rails uses the database.
You need to have your test environment set up correctly in your
config/database.yml
file:You will also need to specify the
pg
gem in yourGemfile
: