is_deeply is ($got, $expected)
[gitmo/MooseX-AutoDoc.git] / t / 105-class.t
CommitLineData
3890b670 1#!/usr/bin/perl -w
2
3use strict;
4use warnings;
5use MooseX::AutoDoc;
6use FindBin '$Bin';
7use lib "$Bin/lib";
8use Test::More tests => 1;
9
10my $autodoc = MooseX::AutoDoc->new;
a3e8bacb 11my $spec = $autodoc->_package_info("AutoDocTest6");
3890b670 12
13my $target = {
14 name => 'AutoDocTest6',
15 roles => [{ name => 'AutoDocTest::Role::Role3'}],
16 superclasses => [],
17 methods => [],
18 attributes => [],
19 };
20
1c61aa9f 21is_deeply($spec, $target);