Skip to content

Commit

Permalink
Add preliminary coverage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 14, 2025
1 parent 382e1e8 commit e09c33b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.precomp/
/App-Rack-*
/releases/
*.rakucov
1
2
HN
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1820,7 +1820,7 @@ If you like this module, or what I’m doing more generally, committing to a [sm
COPYRIGHT AND LICENSE
=====================

Copyright 2022, 2023, 2024 Elizabeth Mattijsen
Copyright 2022, 2023, 2024, 2025 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

2 changes: 1 addition & 1 deletion doc/App-Rak.rakudoc
Original file line number Diff line number Diff line change
Expand Up @@ -2316,7 +2316,7 @@ deal to me!

=head1 COPYRIGHT AND LICENSE

Copyright 2022, 2023, 2024 Elizabeth Mattijsen
Copyright 2022, 2023, 2024, 2025 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under
the Artistic License 2.0.
Expand Down
2 changes: 1 addition & 1 deletion resources/help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ in --patterns-from=file option.
--and=bar Must ALSO match anywhere in line
--andnot=bar Must ALSO NOT match anywhere in line
--or=bar May ALSO match anywhere in line
--ornot=bar May ALSO NOT match annywhere in line
--ornot=bar May ALSO NOT match anywhere in line

String search pattern modifiers:
--ignorecase Ignore distinction between upper, lower and title case letters
Expand Down
15 changes: 15 additions & 0 deletions xt/coverage.rakutest
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
use Test::Coverage;

plan 2;

todo "needs more tests";
coverage-at-least 75;

todo "needs more tests";
uncovered-at-most 1;

source-with-coverage;

report;

# vim: expandtab shiftwidth=4

0 comments on commit e09c33b

Please sign in to comment.