Fix location recipe
Shawn M Moore [Fri, 31 Jul 2009 02:25:44 +0000 (22:25 -0400)]
author/extract-inline-tests
lib/Moose/Cookbook/Basics/Recipe1.pod
lib/Moose/Cookbook/Basics/Recipe2.pod
lib/Moose/Cookbook/Basics/Recipe3.pod
lib/Moose/Cookbook/Basics/Recipe4.pod
lib/Moose/Cookbook/Basics/Recipe9.pod

index 77fb246..c1194aa 100755 (executable)
@@ -86,7 +86,7 @@ use File::Find::Rule;
 use Test::Inline;
 
 
-my $target = 't/000_recipes';
+my $target = 'tests/000_recipes';
 
 for my $t_file ( File::Find::Rule->file->name(qr/^moose_cookbook_\.t$/)->in($target) ) {
     unlink $t_file or die "Cannot unlink $t_file: $!";
index bd1239b..98d6a66 100644 (file)
@@ -163,7 +163,7 @@ required, and calling C<new> without them will throw an error.
 From here on, we can use C<$point> and C<$point3d> just as you would
 any other Perl 5 object. For a more detailed example of what can be
 done, you can refer to the
-F<t/000_recipes/moose_cookbook_basics_recipe1.t> test file.
+F<tests/000_recipes/moose_cookbook_basics_recipe1.t> test file.
 
 =head2 Moose Objects are Just Hashrefs
 
index 832dea7..a44bea3 100644 (file)
@@ -157,7 +157,7 @@ method, which accepts named parameters.
   );
 
 And as with the first recipe, a more in-depth example can be found in
-the F<t/000_recipes/moose_cookbook_basics_recipe2.t> test file.
+the F<tests/000_recipes/moose_cookbook_basics_recipe2.t> test file.
 
 =head1 CONCLUSION
 
index 394e09c..4d1cbe7 100644 (file)
@@ -182,7 +182,7 @@ ensure that is has the correct value for its C<parent> attribute.
 
 As with all the other recipes, B<BinaryTree> can be used just like any
 other Perl 5 class. A more detailed example of its usage can be found
-in F<t/000_recipes/moose_cookbook_basics_recipe3.t>.
+in F<tests/000_recipes/moose_cookbook_basics_recipe3.t>.
 
 =head1 CONCLUSION
 
index 4e3747e..8a6034c 100644 (file)
@@ -262,7 +262,7 @@ arguments to C<super>. Instead, Moose simply passes the same
 parameters that were passed to the method.
 
 A more detailed example of usage can be found in
-F<t/000_recipes/moose_cookbook_basics_recipe4.t>.
+F<tests/000_recipes/moose_cookbook_basics_recipe4.t>.
 
 =head1 CONCLUSION
 
index 5d4c54a..0290003 100644 (file)
@@ -233,7 +233,7 @@ If you'd like to learn more about overloading, please read the
 documentation for the L<overload> pragma.
 
 To see all the code we created together, take a look at
-F<t/000_recipes/basics/010_genes.t>.
+F<tests/000_recipes/basics/010_genes.t>.
 
 =head1 NEXT STEPS