projects
/
gitmo/Package-DeprecationManager.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8040005
)
Add compile test
Dave Rolsky [Sun, 17 Oct 2010 20:08:10 +0000 (15:08 -0500)]
t/compile.t
[new file with mode: 0644]
patch
|
blob
diff --git a/t/compile.t
b/t/compile.t
new file mode 100644
(file)
index 0000000..
0be8621
--- /dev/null
+++ b/
t/compile.t
@@ -0,0
+1,9
@@
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "require Package::DeprecationManager";
+ok( ! $@, 'no errors loading require Package::DeprecationManager' );
+
+done_testing();