Skip to content

Commit

Permalink
add test pod and fix small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
peczenyj committed Dec 7, 2023
1 parent 42ea67d commit 4bb6847
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- fix typos in pod documentation
- test tests for pod

0.07
- add check for publisher restrictions
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ MANIFEST This list of files
README.pod
t/00-load.t
t/01-parse.t
t/99-pod.t
1 change: 1 addition & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ WriteMakefile(
TEST_REQUIRES => {
'Test::Exception' => 0.43,
'Test::More' => 0.94,
'Test::Pod' => 0,
},
( eval { ExtUtils::MakeMaker->VERSION(6.46) }
? ( META_MERGE => {
Expand Down
2 changes: 1 addition & 1 deletion lib/GDPR/IAB/TCFv2/BitUtils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Similar to L<GDPR::IAB::TCFv2::BitUtils::get_uint6> but perform increment the va
Receives the data, bit offset and sequence size n.
Returns a string of size n by concantenating L<GDPR::IAB::TCFv2::BitUtils::get_char6> calls.
Returns a string of size n by concatenate L<GDPR::IAB::TCFv2::BitUtils::get_char6> calls.
my $consent_language = get_char6_pair($data, 108, 2) # returns two letter country encoded as ISO_639-1
Expand Down
4 changes: 4 additions & 0 deletions t/99-pod.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

0 comments on commit 4bb6847

Please sign in to comment.