Rails - 使用 PostgreSQL 安装 Cucumber

发布于 2024-10-22 19:14:18 字数 58 浏览 1 评论 0原文

如何安装 Cucumber 以使用 PostgreSQL 而不是 SQLite?

谢谢

How can I install cucumber to use PostgreSQL instead of SQLite?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城 2024-10-29 19:14:18

Cucumber 与 Rails 使用数据库的方式无关。

您需要在 config/database.yml 文件中正确设置测试环境:

test:
  adapter: postgresql
  username: your_name
  database: a_database

您还需要在 Gemfile 中指定 pg gem代码>:

gem 'pg'

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:

test:
  adapter: postgresql
  username: your_name
  database: a_database

You will also need to specify the pg gem in your Gemfile:

gem 'pg'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文