防止测试迭代期间数据库被删除

发布于 2024-12-10 19:51:43 字数 154 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

请你别敷衍 2024-12-17 19:51:43

尝试 https://github.com/bmabey/database_cleaner gem。

DatabaseCleaner.strategy = nil  # will not do any db cleaning

我希望您可以在本地数据库上进行测试,然后再在真正的遗留数据库上尝试!

Try the https://github.com/bmabey/database_cleaner gem.

DatabaseCleaner.strategy = nil  # will not do any db cleaning

I hope you can test on a local db before trying it on the real legacy db!

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