• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

briandfoy / pod-perldoc / 22619602259
15%

Build:
DEFAULT BRANCH: master
Ran 03 Mar 2026 10:50AM UTC
Jobs 1
Files 13
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

03 Mar 2026 10:49AM UTC coverage: 50.999%. Remained the same
22619602259

push

github

web-flow
fix regex for perlapi search (#86)

perlapi entries are formatted as either

    =item foo

(before perl 5.34) or

    =item C<foo>

(perl 3.34 and later). The `(?:C<)?` part (optional prefix) makes sense in that context.

However, `(?:>)?\b` does not match as intended: `>\b` matches a `>` sign followed by a word boundary. Since `>` is not a word character, we must be at the beginning of a word and `\b` requires a word character to follow (as in `>foo`). This is never the case in perlapi and we always match `(?:>)` zero times.

Fortunately, `\b` on its own works as intended in all perlapi versions: Both `foo\n` and `foo>` are matched by `foo\b`, so just use `\b`, as before PR #76.

Also add `(?:C<)?` to the "related" search regex.

Co-authored-by: brian d foy <briandfoy@pobox.com>

0 of 2 new or added lines in 1 file covered. (0.0%)

766 of 1502 relevant lines covered (51.0%)

9.96 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
2
50.86
0.0% lib/Pod/Perldoc.pm
Jobs
ID Job ID Ran Files Coverage
1 22619602259.1 03 Mar 2026 10:50AM UTC 13
51.0
GitHub Action Run
Source Files on build 22619602259
  • Tree
  • List 13
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • d61f2312 on github
  • Prev Build on master (#22619149604)
  • Next Build on master (#22619602258)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc