Created
July 3, 2014 09:47
-
-
Save tokuhirom/18f63b249ef5c2bd5336 to your computer and use it in GitHub Desktop.
no Moose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Test::More; | |
ok(!eval { require Moose; 1; }, 'no Moose'); | |
ok(!eval { require DateTime; 1; }, 'no DateTime'); | |
ok(!eval { require Devel::StackTrace::WithLexicals; 1; }, 'no Devel::StackTrace::WithLexicals'); | |
done_testing; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment