Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > f5e3a7510b1e49e4b8816ce047ff655e > files > 6

perl-MooseX-App-Cmd-0.06-5.fc15.noarch.rpm

#!/usr/bin/perl -T

use strict;
use warnings;

use Test::More tests => 1;
{

  package Foo;
  use base 'App::Cmd';

  package Bar;
  use Moose;
  extends 'MooseX::App::Cmd';

}

is_deeply(\%{ Bar->new }, \%{ Foo->new }, 'Internal hashes match');