防止测试迭代期间数据库被删除
我正在使用 Rspec 针对遗留数据库测试我的代码(没有迁移,没有模式等)。有没有办法防止数据库在迭代之间被删除?谢谢。
config.before(:suite) do
DatabaseCleaner.strategy = nil
end
I'm using Rspec to test my code against a legacy database (no migration, no schema etc). Is there a way to prevent the database from being dropped between iterations? Thanks.
config.before(:suite) do
DatabaseCleaner.strategy = nil
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 https://github.com/bmabey/database_cleaner gem。
我希望您可以在本地数据库上进行测试,然后再在真正的遗留数据库上尝试!
Try the https://github.com/bmabey/database_cleaner gem.
I hope you can test on a local db before trying it on the real legacy db!