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

briandfoy / pod-perldoc / 22619602258
15%

Build:
DEFAULT BRANCH: master
Ran 03 Mar 2026 10:50AM UTC
Jobs 6
Files 12
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: 14.686% (-36.3%) from 50.999%
22619602258

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%)

542 existing lines in 6 files now uncovered.

220 of 1498 relevant lines covered (14.69%)

6.26 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
2
12.36
-38.5% lib/Pod/Perldoc.pm

Uncovered Existing Lines

Lines Coverage ∆ File
3
20.0
-15.0% lib/Pod/Perldoc/ToPod.pm
5
26.32
-26.32% lib/Pod/Perldoc/ToText.pm
10
7.69
-25.64% lib/Pod/Perldoc/GetOptsOO.pm
12
51.43
-34.29% lib/Pod/Perldoc/BaseTo.pm
107
10.1
-51.44% lib/Pod/Perldoc/ToMan.pm
405
12.36
-38.5% lib/Pod/Perldoc.pm
Jobs
ID Job ID Ran Files Coverage
1 22619602258.1 03 Mar 2026 10:50AM UTC 12
14.69
GitHub Action Run
2 22619602258.2 03 Mar 2026 10:50AM UTC 12
14.69
GitHub Action Run
3 22619602258.3 03 Mar 2026 10:50AM UTC 12
14.69
GitHub Action Run
4 22619602258.4 03 Mar 2026 10:51AM UTC 12
14.69
GitHub Action Run
5 22619602258.5 03 Mar 2026 10:51AM UTC 12
14.69
GitHub Action Run
6 22619602258.6 03 Mar 2026 10:51AM UTC 12
14.69
GitHub Action Run
Source Files on build 22619602258
  • Tree
  • List 12
  • Changed 6
  • Source Changed 0
  • Coverage Changed 6
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • d61f2312 on github
  • Prev Build on master (#22619149604)
  • 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