projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
70af236
)
Remove explicit Exporter inheritace in SQL::Abstract::Test
Dagfinn Ilmari Mannsåker [Fri, 31 Jan 2020 17:37:11 +0000 (17:37 +0000)]
Test:::Builder::Module is documented to inherit from Exporter.
lib/SQL/Abstract/Test.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract/Test.pm
b/lib/SQL/Abstract/Test.pm
index
8aa6f3e
..
d44ef53
100644
(file)
--- a/
lib/SQL/Abstract/Test.pm
+++ b/
lib/SQL/Abstract/Test.pm
@@
-2,7
+2,7
@@
package SQL::Abstract::Test; # see doc at end of file
use strict;
use warnings;
-use base qw(Test::Builder::Module Exporter);
+use base qw(Test::Builder::Module);
use Test::Builder;
use Test::Deep ();
use SQL::Abstract::Tree;