Ruby on Rails:测试数据库正在持久化数据。我正在使用 Cucumber,如何在每个场景后清除数据库?
最好,我想要在 support/env.rb 中定义的这个方法中添加一些内容
After do |scenario|
end
Preferably, I'd like something to go in this method defined in support/env.rb
After do |scenario|
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将这三行添加到 env.rb 的底部
# http://github.com/bmabey/database_cleaner 了解更多信息。
需要“database_cleaner”
DatabaseCleaner.strategy = :截断
Add these three lines at the bottom of your env.rb
# http://github.com/bmabey/database_cleaner for more info.
require 'database_cleaner'
DatabaseCleaner.strategy = :truncation