使用database_cleaner gem时如何覆盖after(:each)而不清理数据库?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此函数放入您的spec_helper中
您可以在before(:all)中调用此代码
Put this function in your spec_helper
You can call this code in before(:all)