From 3b9f59fdaf5084b92e08106c8a544b722404a45e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 11 May 2010 01:45:28 -0500 Subject: synopsis test --- t/010-synopsis.t | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 t/010-synopsis.t (limited to 't') diff --git a/t/010-synopsis.t b/t/010-synopsis.t new file mode 100644 index 0000000..5d29573 --- /dev/null +++ b/t/010-synopsis.t @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; + +use Stash::Manip; + +my $stash = Stash::Manip->new('Foo'); +$stash->add_package_symbol('%foo', {bar => 1}); +{ + no warnings 'once'; + is($Foo::foo{bar}, 1, "set in the stash properly"); +} +ok(!$stash->has_package_symbol('$foo'), "doesn't have anything in scalar slot"); +my $namespace = $stash->namespace; +is_deeply(*{ $namespace->{foo} }{HASH}, {bar => 1}, "namespace works properly"); + +done_testing; -- cgit v1.2.3-54-g00ecf