projects
/
gitmo/Mouse.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Remove the redefine type tests for now, they'll go in a separate file
[gitmo/Mouse.git]
/
t
/
003-mouse-object.t
Commit
Line
Data
c3398f5b
1
#!/usr/bin/env perl
2
use strict;
3
use warnings;
4
use Test::More tests => 2;
5
6
require Mouse;
7
ok($INC{"Mouse/Object.pm"}, "loading Mouse loads Mouse::Object");
8
can_ok('Mouse::Object' => 'new');
9