TAP::Parser::Result::Comment - 注释结果标记。
版本 3.44
这是 TAP::Parser::Result 的子类。如果遇到注释行,将返回此类的标记。
1..1
ok 1 - woo hooo!
# this is a comment
主要列出这里是为了让可怜的 pod 覆盖测试停止尖叫。它们让我整夜睡不着觉。
as_string
请注意,此方法仅返回以 '# ' 开头的注释。
comment
if ( $result->is_comment ) {
my $comment = $result->comment;
print "I have something to say: $comment";
}