将与 Cucumber 一起使用的数据库更改为 _test 数据库而不是 _development
无论出于何种原因,我的黄瓜正在使用我的 _development 数据库而不是我的 _test 数据库。
我该如何改变这一点?
这就是我的database.yml所说的,
test: &test
adapter: mysql
encoding: utf8
database: myapp_test
但我得到错误数据库配置没有指定适配器
这也在底部....我只能假设这是SUPPOSSED将其设置为使用测试数据库
cucumber: &CUCUMBER
<<: *test
culerity:
<<: *CUCUMBER
但是,唉,测试数据库从未被触及
For whatever reason, my cucumber is using my _development db instead of my _test db.
How do I change that?
This is what my database.yml says
test: &test
adapter: mysql
encoding: utf8
database: myapp_test
but i get the error database configuration does not specify adapter
This is also at the bottom.... I can only assume that this is SUPPOSSED to set it to use the test db
cucumber: &CUCUMBER
<<: *test
culerity:
<<: *CUCUMBER
but, alas, the test db is never touched
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否有类似以下内容?
您的 features/support/env.rb 文件中
Do you have something like:
in your features/support/env.rb file?