Index: lang/perl/Shika/trunk/t/010_core/001_new.t
===================================================================
--- lang/perl/Shika/trunk/t/010_core/001_new.t (revision 25046)
+++ lang/perl/Shika/trunk/t/010_core/001_new.t (revision 25046)
@@ -0,0 +1,13 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+{
+    package Foo;
+    use Shika;
+
+    1;
+}
+
+Foo->new();
+ok 1;
