使用database_cleaner gem时如何覆盖after(:each)而不清理数据库?

发布于 2024-10-20 15:29:21 字数 92 浏览 1 评论 0原文

我想在 rspec 示例运行之前清理数据库。 默认情况下,它会在示例运行后清理数据库。如何配置它以在示例运行之前清理数据库,以便我可以浏览测试数据库以查看保留了哪些记录?

I want to clean the database just before my rspec examples run.
The default is it cleans the db after the examples run. How to configure it to clean the db just before the example run so that I can poke around the Test db to see what records were presisted?

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

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

发布评论

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

评论(1

夜吻♂芭芘 2024-10-27 15:29:21

将此函数放入您的spec_helper中

def clear_test_database
  ActiveRecord::Base.descendants.each do |klass|
   klass.destroy_all
  end
end

您可以在before(:all)中调用此代码

Put this function in your spec_helper

def clear_test_database
  ActiveRecord::Base.descendants.each do |klass|
   klass.destroy_all
  end
end

You can call this code in before(:all)

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