Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近开始尝试Dist::Zilla使用Path::Class. 我添加了[PodCoverageTests]插件,它报告了类中的一些故障,这是andPath::Class::Entity的抽象基类。Path::Class::FilePath::Class::Dir
Dist::Zilla
Path::Class
[PodCoverageTests]
Path::Class::Entity
Path::Class::File
Path::Class::Dir
我想要的是某种方式来告诉Entity不需要文档的测试代码,但它的两个派生类需要 - 即使方法只在父类中定义。有人知道有什么方法吗?
Entity
Dist::Zilla 的标准 POD 覆盖测试使用Pod::Coverage::TrustPod。
你应该可以说
=for Pod::Coverage .
告诉它假设一切都记录在案。