Cucumber预设数据库

发布于 2024-12-03 10:02:23 字数 147 浏览 0 评论 0原文

我在黄瓜中有一些测试:

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 技术交流群。

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

发布评论

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

评论(1

世俗缘 2024-12-10 10:02:23

如果我理解您问题的措辞,您需要使用测试值填充数据库。您可以使用 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

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