测试后删除临时文件

发布于 2024-09-15 13:48:03 字数 96 浏览 4 评论 0原文

在 Rails 中进行单元测试期间,会创建一些临时文件(与模型关联)。测试完成后,我想删除这些文件,所以无论测试是否通过,我都必须找到一种方法来执行此操作。 那么,您有什么建议?

During doing unit tests in Rails a few temp files are created (associated with model). When test is done I want to remove these files, so I have to find a way to do this no matter the test passes or not.
So, what are you suggestions?

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

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

发布评论

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

评论(2

灯下孤影 2024-09-22 13:48:03

为什么不将文件创建放在 setup 中,将文件销毁放在拆卸函数中?然后,无论发生什么,创造都会提前进行,而破坏将会在之后发生,无论发生什么。如果您只想在某些条件下设置和拆卸这些文件,这里有一篇很好的文章:http://technicalpickles.com/posts/rails-special-sauce-test-unit-setup-and-teardown/

Why not put the file creation in a setup and the destruction in a teardown function? Then the creation will run beforehand - no matter what - and the destruction will run afterwards - again, no matter what. If you want setup and teardown of these files only for certain conditions, there's a nice writeup on it here: http://technicalpickles.com/posts/rails-special-sauce-test-unit-setup-and-teardown/

给不了的爱 2024-09-22 13:48:03

与此同时,我测试了这样的东西:

begin
  ...
  asserts
  ...
ensure
  delete_temporary_files
end

它也工作得很好。

In a meanwhile I've tested something like this:

begin
  ...
  asserts
  ...
ensure
  delete_temporary_files
end

and it also works fine.

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