diff --git a/.gitignore b/.gitignore index 1aa26b5..2cb77a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .precomp/ /App-Rack-* /releases/ +*.rakucov 1 2 HN diff --git a/README.md b/README.md index de574ff..f5a3267 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/doc/App-Rak.rakudoc b/doc/App-Rak.rakudoc index 43379f5..39e5c06 100644 --- a/doc/App-Rak.rakudoc +++ b/doc/App-Rak.rakudoc @@ -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. diff --git a/resources/help.txt b/resources/help.txt index d43185b..6242a67 100644 --- a/resources/help.txt +++ b/resources/help.txt @@ -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 diff --git a/xt/coverage.rakutest b/xt/coverage.rakutest new file mode 100644 index 0000000..eeb34d5 --- /dev/null +++ b/xt/coverage.rakutest @@ -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