Cucumber预设数据库
我在黄瓜中有一些测试:
And I select "vim" from "category_id"
这个选择填充的表单数据库,如果不手动将其插入数据库,测试就无法通过。 有没有一些自动工具可以在测试前预设数据库?
I have some test in cucumber:
And I select "vim" from "category_id"
This select filled form database, and test can't be passed without manual insert it to db.
Is there some automatic tool to preset db before testing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解您问题的措辞,您需要使用测试值填充数据库。您可以使用 db/seeds.rb 文件来完成此操作,但更好的方法是使用工厂进行测试。这些将在数据库中创建对象供您的测试使用。 Factory Girl 是 Rails 中的最佳选择,因此请尝试使用它: https://github.com/thoughtbot/factory_girl_rails
If I understand the phrasing of your question, you need to populate the db with test values. You can do this with the
db/seeds.rb
file, but a better way is to use factories for your tests. These will create objects in the database for your tests to use. Factory Girl is the best option for this in rails, so try using that: https://github.com/thoughtbot/factory_girl_rails