如何手动指定要在自动测试中运行的测试文件?

发布于 2024-08-16 15:00:59 字数 38 浏览 4 评论 0原文

当非测试文件更新时,如何手动指定应运行哪些测试/单元测试文件?

How do I manually specify which test/unit test files should be run when a non-test file gets updated?

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

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

发布评论

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

评论(2

天涯离梦残月幽梦 2024-08-23 15:00:59

您可以在 ~/.autotest/.autotest 文件中创建自定义映射,如下所示:

Autotest.add_hook :initialize do |at|
  at.add_mapping(/lib\/foo\/(.*).rb/, true) do |filename, matchdata|
    ["spec/lib/foo/#{matchdata[1]}_spec.rb"]
  end
end

这与 spec/lib/foo 中的规范匹配code> 目录到 lib/foo 文件,因此一旦 lib/foo 下的文件被更改,这些规范就会运行。我想您可以对 test 目录执行相同的操作。

You can create custom mappings in ~/.autotest or <project_path>/.autotest file like this:

Autotest.add_hook :initialize do |at|
  at.add_mapping(/lib\/foo\/(.*).rb/, true) do |filename, matchdata|
    ["spec/lib/foo/#{matchdata[1]}_spec.rb"]
  end
end

This matches specs in spec/lib/foo directory to lib/foo files, so these specs will run once files under lib/foo are being changed. I guess you can do the same with test directory.

余生再见 2024-08-23 15:00:59

重新定义 Autotest#test_files_for(filename) 以返回测试文件名的字符串数组。

一些教程引用了 tests_for_file,但这是该方法的旧名称:它是 在 ZenTest 3.9.0 中更改为 test_files_for

同样,重新定义 tests_files_for 也无济于事。

Redefine Autotest#test_files_for(filename) to return an array of strings of the test file names.

Some tutorials refer to tests_for_file, but that was the old name of the method: it was changed in ZenTest 3.9.0 to test_files_for.

Similarly, redefining tests_files_for won't help.

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