Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.10.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 141c926..e1ef77b 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Test-Synopsis-Expectation

 {{$NEXT}}

+0.10 2013-12-31T08:25:12Z
+
+    - Add notations to ignore testing
+
 0.04 2013-12-28T04:38:59Z

     - Show line number and filename on each test cases
  • Loading branch information
moznion committed Dec 31, 2013
1 parent 4a2881b commit 907b4d7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Test-Synopsis-Expectation

{{$NEXT}}

0.10 2013-12-31T08:25:12Z

- Add notations to ignore testing

0.04 2013-12-28T04:38:59Z

- Show line number and filename on each test cases
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@
"web" : "https://github.com/moznion/Test-Synopsis-Expectation"
}
},
"version" : "0.04"
"version" : "0.10"
}
2 changes: 1 addition & 1 deletion lib/Test/Synopsis/Expectation.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use ExtUtils::Manifest qw/maniread/;
use Test::More import => \@test_more_exports;
use Test::Synopsis::Expectation::Pod;

our $VERSION = "0.04";
our $VERSION = "0.10";
our @EXPORT = (@test_more_exports, qw/all_synopsis_ok synopsis_ok/);

my $prepared = '';
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Synopsis/Expectation/Pod.pm
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ sub _handle_element_start {
}

sub _handle_element_end {
my ($self, $element_name, $attr_hash_r) = @_;
my ($self, $element_name) = @_;

if ($element_name eq 'head1') {
$self->{in_head1} = 0;
Expand Down
8 changes: 7 additions & 1 deletion xt/local_functions.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,10 @@ eval {
};
plan skip_all => "Test::LocalFunctions required for testing variables" if $@;

Test::LocalFunctions::all_local_functions_ok();
Test::LocalFunctions::all_local_functions_ok({
ignore_functions => [
qr/_handle_text/,
qr/_handle_element_start/,
qr/_handle_element_end/,
]
});

0 comments on commit 907b4d7

Please sign in to comment.