如何更改 ExtUtils::Makemaker 中保存测试文件的目录?

发布于 2024-07-15 03:22:07 字数 80 浏览 7 评论 0原文

如何更改 Makefile.PL 中的默认测试路径默认值 t/*.t? 文档中提到了一个属性,但它不起作用。 有人知道怎么做吗?

How can you change the default tests path in Makefile.PL from the default value t/*.t? There's an attribute mentioned in the documentation but it does not work. Anybody know how to that?

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

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

发布评论

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

评论(2

眉黛浅 2024-07-22 03:22:09

在 Makefile.PL 中:

WriteMakefile(
    test => { TESTS => 'tests/*.t'},
    ....

将使 make test 运行 tests 中的测试脚本,而不是 t

In Makefile.PL:

WriteMakefile(
    test => { TESTS => 'tests/*.t'},
    ....

Will make make test run the tests scripts in tests instead of t.

‘画卷フ 2024-07-22 03:22:09

Manni 的建议允许您拥有 MakeMaker 将在测试目标中使用的 glob 模式,但这仍然相当有限。 我编写了 Test::Manifest 以便我可以覆盖这些部分以完全执行我的操作需要做的。 即使您不想做 Test::Manifest 所做的同样的事情,您也可以查看源代码以了解我做了什么。

Manni's suggestion allows you to have the glob pattern that MakeMaker will use in the test targets, but that's still rather limited. I wrote Test::Manifest so that I could override those portions to do exactly what I needed to do. Even if you don't want to do the same thing that Test::Manifest does, you can look at the source to see what I did.

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