summaryrefslogtreecommitdiffstats
path: root/t/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-05 23:10:53 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-05 23:15:38 -0600
commit6c30b2737f4adccfeb54a9c4c34a4d9a0d98ebb5 (patch)
tree013301c4a59c286e014c21cab56d79993feca8a8 /t/lib
parent0b8010de36cb8e856024e526756389d7d10b483a (diff)
downloadpackage-stash-6c30b2737f4adccfeb54a9c4c34a4d9a0d98ebb5.tar.gz
package-stash-6c30b2737f4adccfeb54a9c4c34a4d9a0d98ebb5.zip
update test suite
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/CompileTime.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/lib/CompileTime.pm b/t/lib/CompileTime.pm
new file mode 100644
index 0000000..925bc18
--- /dev/null
+++ b/t/lib/CompileTime.pm
@@ -0,0 +1,15 @@
+package CompileTime;
+use strict;
+use warnings;
+
+use Package::Stash;
+
+our $foo = 23;
+
+BEGIN {
+ my $stash = Package::Stash->new(__PACKAGE__);
+ $stash->add_symbol('$bar', $foo);
+ $stash->add_symbol('$baz', $stash->get_symbol('$foo'));
+}
+
+1;