From: Justin Hunter Date: Fri, 28 Aug 2009 19:30:35 +0000 (-0700) Subject: is_deeply is ($got, $expected) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1c61aa9fa1dd1c405e875a9648bfb9bbd6685067;p=gitmo%2FMooseX-AutoDoc.git is_deeply is ($got, $expected) --- diff --git a/t/100-class.t b/t/100-class.t index 7c130c5..a76d14a 100644 --- a/t/100-class.t +++ b/t/100-class.t @@ -19,4 +19,5 @@ my $target = { superclasses => [], methods => [{ name => 'bar'},{ name => 'foo'}], }; -is_deeply($target, $spec); + +is_deeply($spec, $target); diff --git a/t/101-class.t b/t/101-class.t index 55c3a4e..9fbbc1c 100644 --- a/t/101-class.t +++ b/t/101-class.t @@ -23,4 +23,5 @@ my $target = { name => 'attr8', }] }; -is_deeply($target, $spec); + +is_deeply($spec, $target); diff --git a/t/102-class.t b/t/102-class.t index 0b07240..9e659ab 100644 --- a/t/102-class.t +++ b/t/102-class.t @@ -18,4 +18,4 @@ my $target = { attributes => [], }; -is_deeply($target, $spec); +is_deeply($spec, $target); diff --git a/t/103-class.t b/t/103-class.t index 080c5bf..d3002f7 100644 --- a/t/103-class.t +++ b/t/103-class.t @@ -24,4 +24,4 @@ my $target = { attributes => [] }; -is_deeply($target, $spec); +is_deeply($spec, $target); diff --git a/t/104-class.t b/t/104-class.t index bb5a89e..eee9de7 100644 --- a/t/104-class.t +++ b/t/104-class.t @@ -18,4 +18,4 @@ my $target = { attributes => [], }; -is_deeply($target, $spec); +is_deeply($spec, $target); diff --git a/t/105-class.t b/t/105-class.t index ee21f29..4c33e27 100644 --- a/t/105-class.t +++ b/t/105-class.t @@ -18,4 +18,4 @@ my $target = { attributes => [], }; -is_deeply($target, $spec); +is_deeply($spec, $target); diff --git a/t/200-role.t b/t/200-role.t index cc0ca46..882a701 100644 --- a/t/200-role.t +++ b/t/200-role.t @@ -22,4 +22,5 @@ my $target = { }, ], }; -is_deeply($target, $spec); + +is_deeply($spec, $target); diff --git a/t/201-role.t b/t/201-role.t index 50a7bb7..3a2b9ff 100644 --- a/t/201-role.t +++ b/t/201-role.t @@ -22,4 +22,5 @@ my $target = { }, ], }; -is_deeply($target, $spec); + +is_deeply($spec, $target); diff --git a/t/202-role.t b/t/202-role.t index c921d82..735ff92 100644 --- a/t/202-role.t +++ b/t/202-role.t @@ -25,4 +25,5 @@ my $target = { }, ], }; -is_deeply($target, $spec); + +is_deeply($spec, $target);