The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#########1 Test File for MooseX::ShortCut::BuildInstance::Types       7#########8#########9
#!perl

$| = 1;

use	Test::Most tests => 24;
use	Test::Moose;
use	Data::Dumper;
use Capture::Tiny qw( capture_stderr );

use	lib '../../../../../Log-Shiras/lib',
		'../../../../lib',
	;
use MooseX::Types::Moose qw( Str );
use MooseX::ShortCut::BuildInstance::Types qw(
		NameSpace			SuperClassesList			RolesList
		Attributes			Methods						BuildClassDict
	);
my  ( 
			$position, $counter, $capture,
	);
my 			$row = 0;
my			$question_ref =[
				'Test', 'MooseX::ShortCut::BuildInstance::Types',
				'Bad-Name',
				[ 'Test::Most' ], [ 'MooseX::ShortCut::BuildInstance::Types', 'Data::Dumper' ],
				[],undef,['Test'],
				[ 'Test::Role' ],
				[],undef,['Test::Class'],
				{ check => { is => 'ro', isa => Str } },
				[],undef,{ check => [ is => 'ro', isa => Str ] },
				{ check => sub{ print $_ } },
				[],undef,{ check => [] },
				{
					package			=> 'On::The::Fly',
					superclasses	=>[ 'Test::Class' ],
					roles			=>[ 'Test::Role' ]
				},
				[],undef,{ check => [] },
			];
my			$answer_ref = [
				undef, undef,
				undef, undef,
				qr/scalar \@\$_ > 0/,
				qr/Undef did not pass type constraint "Defined"/,
				qr/Value "Test" did not pass type constraint "ClassName" \(in \$_->\[0\]\)/,
				undef,
				qr/scalar \@\$_ > 0/,
				qr/Undef did not pass type constraint "Defined"/,
				qr/Value "Test::Class" did not pass type constraint "RoleName" \(in \$_->\[0\]\)/,
				undef,
				qr/Reference \[\] did not pass type constraint "HashRef"/,
				qr/Undef did not pass type constraint "Defined"/,
				qr/Reference \[.+\] did not pass type constraint "HashRef"/,
				undef,
				qr/Reference \[\] did not pass type constraint "HashRef"/,
				qr/Undef did not pass type constraint "Defined"/,
				qr/Reference \[\] did not pass type constraint "CodeRef"/,
				undef,
				qr/Reference \[\] did not pass type constraint "HashRef"/,
				qr/Undef did not pass type constraint "Defined"/,
				qr/does not allow key "check" to appear in hash/,
			];
			map{
ok			is_NameSpace( $question_ref->[$_] ),
							"Check that a good NameSpace passes: $question_ref->[$_]";
			} ( 0..1 );
ok			!is_NameSpace( $question_ref->[2] ),
							"Check that a bad NameSpace fails: $question_ref->[2]";
			map{
ok			is_SuperClassesList( $question_ref->[$_] ),
							"Check that a good SuperClassesList passes: " . Dumper( $question_ref->[$_] );
			} ( 3..4 );
			map{
ok			!is_SuperClassesList( $question_ref->[$_] ),
							"Check that a bad SuperClassesList fails: ". Dumper( $question_ref->[$_] );
			} ( 5..7 );
			map{
ok			is_RolesList( $question_ref->[$_] ),
							"Check that a good RolesList passes: " . Dumper( $question_ref->[$_] );
			} ( 8..8 );
			map{
ok			!is_RolesList( $question_ref->[$_] ),
							"Check that a bad RolesList fails: ". Dumper( $question_ref->[$_] );
			} ( 9..11 );
			map{
ok			is_Attributes( $question_ref->[$_] ),
							"Check that a good Attributes passes: " . Dumper( $question_ref->[$_] );
			} ( 12..12 );
			map{
ok			!is_Attributes( $question_ref->[$_] ),
							"Check that a bad Attributes fails: ". Dumper( $question_ref->[$_] );
			} ( 13..15 );
			map{
ok			is_Methods( $question_ref->[$_] ),
							"Check that a good Methods passes: " . Dumper( $question_ref->[$_] );
			} ( 16..16 );
			map{
ok			!is_Methods( $question_ref->[$_] ),
							"Check that a bad Methods fails: ". Dumper( $question_ref->[$_] );
			} ( 17..19 );
			map{
ok			is_BuildClassDict( $question_ref->[$_] ),
							"Check that a good BuildClassDict passes: " . Dumper( $question_ref->[$_] );
			} ( 20..20 );
			map{
ok			!is_BuildClassDict( $question_ref->[$_] ),
							"Check that a bad BuildClassDict fails: ". Dumper( $question_ref->[$_] );
			} ( 21..23 );
explain 								"...Test Done";
done_testing();

package Test::Role;
use Moose::Role;

package Test::Class;
use Moose;