Skip to content

Instantly share code, notes, and snippets.

@tokuhirom
Created July 3, 2014 09:47
Show Gist options
  • Save tokuhirom/18f63b249ef5c2bd5336 to your computer and use it in GitHub Desktop.
Save tokuhirom/18f63b249ef5c2bd5336 to your computer and use it in GitHub Desktop.
no Moose
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