如何更改 ExtUtils::Makemaker 中保存测试文件的目录?
如何更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Makefile.PL 中:
将使
make test
运行tests
中的测试脚本,而不是t
。In Makefile.PL:
Will make
make test
run the tests scripts intests
instead oft
.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.