Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ Test2 check that all of your Perl files are tidy
# DESCRIPTION

This module lets you test your code for tidiness. It is more or less a drop in replacement
for [Test::PerlTidy](https://metacpan.org/pod/Test::PerlTidy), except that it is implemented using [Test2::API](https://metacpan.org/pod/Test2::API), and it handles
UTF-8 (a common encoding for Perl source code) better, and works on windows.
for [Test::PerlTidy](https://metacpan.org/pod/Test::PerlTidy), except that it is implemented using [Test2::API](https://metacpan.org/pod/Test2::API). The [is\_file\_tidy](https://metacpan.org/pod/is_file_tidy)
function mentioned below also takes an option `return_diff_object` below that did not exist
in the original.

# FUNCTIONS

Expand Down
5 changes: 3 additions & 2 deletions lib/Test2/Tools/PerlTidy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ our @EXPORT_OK = qw( run_tests is_file_tidy );
=head1 DESCRIPTION

This module lets you test your code for tidiness. It is more or less a drop in replacement
for L<Test::PerlTidy>, except that it is implemented using L<Test2::API>, and it handles
UTF-8 (a common encoding for Perl source code) better, and works on windows.
for L<Test::PerlTidy>, except that it is implemented using L<Test2::API>. The L<is_file_tidy>
function mentioned below also takes an option C<return_diff_object> below that did not exist
in the original.

=head1 FUNCTIONS

Expand Down
Loading