From: Shawn M Moore Date: Fri, 31 Jul 2009 02:21:13 +0000 (-0400) Subject: Basic moving of tests into another directory X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dae04dd55cdf3c4af46920b298f8065075d344df;p=gitmo%2FMoose.git Basic moving of tests into another directory --- diff --git a/t/aggregate.t b/t/aggregate.t new file mode 100644 index 0000000..c608072 --- /dev/null +++ b/t/aggregate.t @@ -0,0 +1,9 @@ +#!/usr/bin/perl +use strict; +use warnings; +use Test::Aggregate; +my $tests = Test::Aggregate->new({ + dirs => 'tests', +}); +$tests->run; + diff --git a/t/000_load.t b/tests/000_load.t similarity index 100% rename from t/000_load.t rename to tests/000_load.t diff --git a/t/000_recipes/basics-recipe10.t b/tests/000_recipes/basics-recipe10.t similarity index 100% rename from t/000_recipes/basics-recipe10.t rename to tests/000_recipes/basics-recipe10.t diff --git a/t/010_basics/001_basic_class_setup.t b/tests/010_basics/001_basic_class_setup.t similarity index 100% rename from t/010_basics/001_basic_class_setup.t rename to tests/010_basics/001_basic_class_setup.t diff --git a/t/010_basics/002_require_superclasses.t b/tests/010_basics/002_require_superclasses.t similarity index 100% rename from t/010_basics/002_require_superclasses.t rename to tests/010_basics/002_require_superclasses.t diff --git a/t/010_basics/003_super_and_override.t b/tests/010_basics/003_super_and_override.t similarity index 100% rename from t/010_basics/003_super_and_override.t rename to tests/010_basics/003_super_and_override.t diff --git a/t/010_basics/004_inner_and_augment.t b/tests/010_basics/004_inner_and_augment.t similarity index 100% rename from t/010_basics/004_inner_and_augment.t rename to tests/010_basics/004_inner_and_augment.t diff --git a/t/010_basics/005_override_augment_inner_super.t b/tests/010_basics/005_override_augment_inner_super.t similarity index 100% rename from t/010_basics/005_override_augment_inner_super.t rename to tests/010_basics/005_override_augment_inner_super.t diff --git a/t/010_basics/006_override_and_foreign_classes.t b/tests/010_basics/006_override_and_foreign_classes.t similarity index 100% rename from t/010_basics/006_override_and_foreign_classes.t rename to tests/010_basics/006_override_and_foreign_classes.t diff --git a/t/010_basics/007_always_strict_warnings.t b/tests/010_basics/007_always_strict_warnings.t similarity index 100% rename from t/010_basics/007_always_strict_warnings.t rename to tests/010_basics/007_always_strict_warnings.t diff --git a/t/010_basics/008_wrapped_method_cxt_propagation.t b/tests/010_basics/008_wrapped_method_cxt_propagation.t similarity index 100% rename from t/010_basics/008_wrapped_method_cxt_propagation.t rename to tests/010_basics/008_wrapped_method_cxt_propagation.t diff --git a/t/010_basics/009_import_unimport.t b/tests/010_basics/009_import_unimport.t similarity index 100% rename from t/010_basics/009_import_unimport.t rename to tests/010_basics/009_import_unimport.t diff --git a/t/010_basics/010_method_modifier_with_regexp.t b/tests/010_basics/010_method_modifier_with_regexp.t similarity index 100% rename from t/010_basics/010_method_modifier_with_regexp.t rename to tests/010_basics/010_method_modifier_with_regexp.t diff --git a/t/010_basics/011_moose_respects_type_constraints.t b/tests/010_basics/011_moose_respects_type_constraints.t similarity index 100% rename from t/010_basics/011_moose_respects_type_constraints.t rename to tests/010_basics/011_moose_respects_type_constraints.t diff --git a/t/010_basics/012_rebless.t b/tests/010_basics/012_rebless.t similarity index 100% rename from t/010_basics/012_rebless.t rename to tests/010_basics/012_rebless.t diff --git a/t/010_basics/013_create.t b/tests/010_basics/013_create.t similarity index 100% rename from t/010_basics/013_create.t rename to tests/010_basics/013_create.t diff --git a/t/010_basics/014_create_anon.t b/tests/010_basics/014_create_anon.t similarity index 100% rename from t/010_basics/014_create_anon.t rename to tests/010_basics/014_create_anon.t diff --git a/t/010_basics/015_buildargs.t b/tests/010_basics/015_buildargs.t similarity index 100% rename from t/010_basics/015_buildargs.t rename to tests/010_basics/015_buildargs.t diff --git a/t/010_basics/016_load_into_main.t b/tests/010_basics/016_load_into_main.t similarity index 100% rename from t/010_basics/016_load_into_main.t rename to tests/010_basics/016_load_into_main.t diff --git a/t/010_basics/017_error_handling.t b/tests/010_basics/017_error_handling.t similarity index 100% rename from t/010_basics/017_error_handling.t rename to tests/010_basics/017_error_handling.t diff --git a/t/010_basics/018_methods.t b/tests/010_basics/018_methods.t similarity index 100% rename from t/010_basics/018_methods.t rename to tests/010_basics/018_methods.t diff --git a/t/010_basics/019-destruction.t b/tests/010_basics/019-destruction.t similarity index 100% rename from t/010_basics/019-destruction.t rename to tests/010_basics/019-destruction.t diff --git a/t/010_basics/020-global-destruction-helper.pl b/tests/010_basics/020-global-destruction-helper.pl similarity index 100% rename from t/010_basics/020-global-destruction-helper.pl rename to tests/010_basics/020-global-destruction-helper.pl diff --git a/t/010_basics/020-global-destruction.t b/tests/010_basics/020-global-destruction.t similarity index 100% rename from t/010_basics/020-global-destruction.t rename to tests/010_basics/020-global-destruction.t diff --git a/t/010_basics/022_moose_exporter_groups.t b/tests/010_basics/022_moose_exporter_groups.t similarity index 100% rename from t/010_basics/022_moose_exporter_groups.t rename to tests/010_basics/022_moose_exporter_groups.t diff --git a/t/020_attributes/001_attribute_reader_generation.t b/tests/020_attributes/001_attribute_reader_generation.t similarity index 100% rename from t/020_attributes/001_attribute_reader_generation.t rename to tests/020_attributes/001_attribute_reader_generation.t diff --git a/t/020_attributes/002_attribute_writer_generation.t b/tests/020_attributes/002_attribute_writer_generation.t similarity index 100% rename from t/020_attributes/002_attribute_writer_generation.t rename to tests/020_attributes/002_attribute_writer_generation.t diff --git a/t/020_attributes/003_attribute_accessor_generation.t b/tests/020_attributes/003_attribute_accessor_generation.t similarity index 100% rename from t/020_attributes/003_attribute_accessor_generation.t rename to tests/020_attributes/003_attribute_accessor_generation.t diff --git a/t/020_attributes/004_attribute_triggers.t b/tests/020_attributes/004_attribute_triggers.t similarity index 100% rename from t/020_attributes/004_attribute_triggers.t rename to tests/020_attributes/004_attribute_triggers.t diff --git a/t/020_attributes/005_attribute_does.t b/tests/020_attributes/005_attribute_does.t similarity index 100% rename from t/020_attributes/005_attribute_does.t rename to tests/020_attributes/005_attribute_does.t diff --git a/t/020_attributes/006_attribute_required.t b/tests/020_attributes/006_attribute_required.t similarity index 100% rename from t/020_attributes/006_attribute_required.t rename to tests/020_attributes/006_attribute_required.t diff --git a/t/020_attributes/007_attribute_custom_metaclass.t b/tests/020_attributes/007_attribute_custom_metaclass.t similarity index 100% rename from t/020_attributes/007_attribute_custom_metaclass.t rename to tests/020_attributes/007_attribute_custom_metaclass.t diff --git a/t/020_attributes/008_attribute_type_unions.t b/tests/020_attributes/008_attribute_type_unions.t similarity index 100% rename from t/020_attributes/008_attribute_type_unions.t rename to tests/020_attributes/008_attribute_type_unions.t diff --git a/t/020_attributes/009_attribute_inherited_slot_specs.t b/tests/020_attributes/009_attribute_inherited_slot_specs.t similarity index 100% rename from t/020_attributes/009_attribute_inherited_slot_specs.t rename to tests/020_attributes/009_attribute_inherited_slot_specs.t diff --git a/t/020_attributes/010_attribute_delegation.t b/tests/020_attributes/010_attribute_delegation.t similarity index 100% rename from t/020_attributes/010_attribute_delegation.t rename to tests/020_attributes/010_attribute_delegation.t diff --git a/t/020_attributes/011_more_attr_delegation.t b/tests/020_attributes/011_more_attr_delegation.t similarity index 100% rename from t/020_attributes/011_more_attr_delegation.t rename to tests/020_attributes/011_more_attr_delegation.t diff --git a/t/020_attributes/012_misc_attribute_tests.t b/tests/020_attributes/012_misc_attribute_tests.t similarity index 100% rename from t/020_attributes/012_misc_attribute_tests.t rename to tests/020_attributes/012_misc_attribute_tests.t diff --git a/t/020_attributes/013_attr_dereference_test.t b/tests/020_attributes/013_attr_dereference_test.t similarity index 100% rename from t/020_attributes/013_attr_dereference_test.t rename to tests/020_attributes/013_attr_dereference_test.t diff --git a/t/020_attributes/014_misc_attribute_coerce_lazy.t b/tests/020_attributes/014_misc_attribute_coerce_lazy.t similarity index 100% rename from t/020_attributes/014_misc_attribute_coerce_lazy.t rename to tests/020_attributes/014_misc_attribute_coerce_lazy.t diff --git a/t/020_attributes/015_attribute_traits.t b/tests/020_attributes/015_attribute_traits.t similarity index 100% rename from t/020_attributes/015_attribute_traits.t rename to tests/020_attributes/015_attribute_traits.t diff --git a/t/020_attributes/016_attribute_traits_registered.t b/tests/020_attributes/016_attribute_traits_registered.t similarity index 100% rename from t/020_attributes/016_attribute_traits_registered.t rename to tests/020_attributes/016_attribute_traits_registered.t diff --git a/t/020_attributes/017_attribute_traits_n_meta.t b/tests/020_attributes/017_attribute_traits_n_meta.t similarity index 100% rename from t/020_attributes/017_attribute_traits_n_meta.t rename to tests/020_attributes/017_attribute_traits_n_meta.t diff --git a/t/020_attributes/018_no_init_arg.t b/tests/020_attributes/018_no_init_arg.t similarity index 100% rename from t/020_attributes/018_no_init_arg.t rename to tests/020_attributes/018_no_init_arg.t diff --git a/t/020_attributes/019_attribute_lazy_initializer.t b/tests/020_attributes/019_attribute_lazy_initializer.t similarity index 100% rename from t/020_attributes/019_attribute_lazy_initializer.t rename to tests/020_attributes/019_attribute_lazy_initializer.t diff --git a/t/020_attributes/020_trigger_and_coerce.t b/tests/020_attributes/020_trigger_and_coerce.t similarity index 100% rename from t/020_attributes/020_trigger_and_coerce.t rename to tests/020_attributes/020_trigger_and_coerce.t diff --git a/t/020_attributes/021_method_generation_rules.t b/tests/020_attributes/021_method_generation_rules.t similarity index 100% rename from t/020_attributes/021_method_generation_rules.t rename to tests/020_attributes/021_method_generation_rules.t diff --git a/t/020_attributes/022_legal_options_for_inheritance.t b/tests/020_attributes/022_legal_options_for_inheritance.t similarity index 100% rename from t/020_attributes/022_legal_options_for_inheritance.t rename to tests/020_attributes/022_legal_options_for_inheritance.t diff --git a/t/020_attributes/023_attribute_names.t b/tests/020_attributes/023_attribute_names.t similarity index 100% rename from t/020_attributes/023_attribute_names.t rename to tests/020_attributes/023_attribute_names.t diff --git a/t/020_attributes/024_attribute_traits_parameterized.t b/tests/020_attributes/024_attribute_traits_parameterized.t similarity index 100% rename from t/020_attributes/024_attribute_traits_parameterized.t rename to tests/020_attributes/024_attribute_traits_parameterized.t diff --git a/t/020_attributes/025_chained_coercion.t b/tests/020_attributes/025_chained_coercion.t similarity index 100% rename from t/020_attributes/025_chained_coercion.t rename to tests/020_attributes/025_chained_coercion.t diff --git a/t/020_attributes/026_attribute_without_any_methods.t b/tests/020_attributes/026_attribute_without_any_methods.t similarity index 100% rename from t/020_attributes/026_attribute_without_any_methods.t rename to tests/020_attributes/026_attribute_without_any_methods.t diff --git a/t/020_attributes/027_accessor_override_method.t b/tests/020_attributes/027_accessor_override_method.t similarity index 100% rename from t/020_attributes/027_accessor_override_method.t rename to tests/020_attributes/027_accessor_override_method.t diff --git a/t/020_attributes/028_no_slot_access.t b/tests/020_attributes/028_no_slot_access.t similarity index 100% rename from t/020_attributes/028_no_slot_access.t rename to tests/020_attributes/028_no_slot_access.t diff --git a/t/030_roles/001_meta_role.t b/tests/030_roles/001_meta_role.t similarity index 100% rename from t/030_roles/001_meta_role.t rename to tests/030_roles/001_meta_role.t diff --git a/t/030_roles/002_role.t b/tests/030_roles/002_role.t similarity index 100% rename from t/030_roles/002_role.t rename to tests/030_roles/002_role.t diff --git a/t/030_roles/003_apply_role.t b/tests/030_roles/003_apply_role.t similarity index 100% rename from t/030_roles/003_apply_role.t rename to tests/030_roles/003_apply_role.t diff --git a/t/030_roles/004_role_composition_errors.t b/tests/030_roles/004_role_composition_errors.t similarity index 100% rename from t/030_roles/004_role_composition_errors.t rename to tests/030_roles/004_role_composition_errors.t diff --git a/t/030_roles/005_role_conflict_detection.t b/tests/030_roles/005_role_conflict_detection.t similarity index 100% rename from t/030_roles/005_role_conflict_detection.t rename to tests/030_roles/005_role_conflict_detection.t diff --git a/t/030_roles/006_role_exclusion.t b/tests/030_roles/006_role_exclusion.t similarity index 100% rename from t/030_roles/006_role_exclusion.t rename to tests/030_roles/006_role_exclusion.t diff --git a/t/030_roles/007_roles_and_req_method_edge_cases.t b/tests/030_roles/007_roles_and_req_method_edge_cases.t similarity index 100% rename from t/030_roles/007_roles_and_req_method_edge_cases.t rename to tests/030_roles/007_roles_and_req_method_edge_cases.t diff --git a/t/030_roles/008_role_conflict_edge_cases.t b/tests/030_roles/008_role_conflict_edge_cases.t similarity index 100% rename from t/030_roles/008_role_conflict_edge_cases.t rename to tests/030_roles/008_role_conflict_edge_cases.t diff --git a/t/030_roles/009_more_role_edge_cases.t b/tests/030_roles/009_more_role_edge_cases.t similarity index 100% rename from t/030_roles/009_more_role_edge_cases.t rename to tests/030_roles/009_more_role_edge_cases.t diff --git a/t/030_roles/010_run_time_role_composition.t b/tests/030_roles/010_run_time_role_composition.t similarity index 100% rename from t/030_roles/010_run_time_role_composition.t rename to tests/030_roles/010_run_time_role_composition.t diff --git a/t/030_roles/011_overriding.t b/tests/030_roles/011_overriding.t similarity index 100% rename from t/030_roles/011_overriding.t rename to tests/030_roles/011_overriding.t diff --git a/t/030_roles/012_method_exclusion_in_composition.t b/tests/030_roles/012_method_exclusion_in_composition.t similarity index 100% rename from t/030_roles/012_method_exclusion_in_composition.t rename to tests/030_roles/012_method_exclusion_in_composition.t diff --git a/t/030_roles/013_method_aliasing_in_composition.t b/tests/030_roles/013_method_aliasing_in_composition.t similarity index 100% rename from t/030_roles/013_method_aliasing_in_composition.t rename to tests/030_roles/013_method_aliasing_in_composition.t diff --git a/t/030_roles/014_more_alias_and_exclude.t b/tests/030_roles/014_more_alias_and_exclude.t similarity index 100% rename from t/030_roles/014_more_alias_and_exclude.t rename to tests/030_roles/014_more_alias_and_exclude.t diff --git a/t/030_roles/015_runtime_roles_and_attrs.t b/tests/030_roles/015_runtime_roles_and_attrs.t similarity index 100% rename from t/030_roles/015_runtime_roles_and_attrs.t rename to tests/030_roles/015_runtime_roles_and_attrs.t diff --git a/t/030_roles/016_runtime_roles_and_nonmoose.t b/tests/030_roles/016_runtime_roles_and_nonmoose.t similarity index 100% rename from t/030_roles/016_runtime_roles_and_nonmoose.t rename to tests/030_roles/016_runtime_roles_and_nonmoose.t diff --git a/t/030_roles/017_extending_role_attrs.t b/tests/030_roles/017_extending_role_attrs.t similarity index 100% rename from t/030_roles/017_extending_role_attrs.t rename to tests/030_roles/017_extending_role_attrs.t diff --git a/t/030_roles/018_runtime_roles_w_params.t b/tests/030_roles/018_runtime_roles_w_params.t similarity index 100% rename from t/030_roles/018_runtime_roles_w_params.t rename to tests/030_roles/018_runtime_roles_w_params.t diff --git a/t/030_roles/019_build.t b/tests/030_roles/019_build.t similarity index 100% rename from t/030_roles/019_build.t rename to tests/030_roles/019_build.t diff --git a/t/030_roles/020_role_composite.t b/tests/030_roles/020_role_composite.t similarity index 100% rename from t/030_roles/020_role_composite.t rename to tests/030_roles/020_role_composite.t diff --git a/t/030_roles/021_role_composite_exclusion.t b/tests/030_roles/021_role_composite_exclusion.t similarity index 100% rename from t/030_roles/021_role_composite_exclusion.t rename to tests/030_roles/021_role_composite_exclusion.t diff --git a/t/030_roles/022_role_composition_req_methods.t b/tests/030_roles/022_role_composition_req_methods.t similarity index 100% rename from t/030_roles/022_role_composition_req_methods.t rename to tests/030_roles/022_role_composition_req_methods.t diff --git a/t/030_roles/023_role_composition_attributes.t b/tests/030_roles/023_role_composition_attributes.t similarity index 100% rename from t/030_roles/023_role_composition_attributes.t rename to tests/030_roles/023_role_composition_attributes.t diff --git a/t/030_roles/024_role_composition_methods.t b/tests/030_roles/024_role_composition_methods.t similarity index 100% rename from t/030_roles/024_role_composition_methods.t rename to tests/030_roles/024_role_composition_methods.t diff --git a/t/030_roles/025_role_composition_override.t b/tests/030_roles/025_role_composition_override.t similarity index 100% rename from t/030_roles/025_role_composition_override.t rename to tests/030_roles/025_role_composition_override.t diff --git a/t/030_roles/026_role_composition_method_mods.t b/tests/030_roles/026_role_composition_method_mods.t similarity index 100% rename from t/030_roles/026_role_composition_method_mods.t rename to tests/030_roles/026_role_composition_method_mods.t diff --git a/t/030_roles/031_roles_applied_in_create.t b/tests/030_roles/031_roles_applied_in_create.t similarity index 100% rename from t/030_roles/031_roles_applied_in_create.t rename to tests/030_roles/031_roles_applied_in_create.t diff --git a/t/030_roles/032_roles_and_method_cloning.t b/tests/030_roles/032_roles_and_method_cloning.t similarity index 100% rename from t/030_roles/032_roles_and_method_cloning.t rename to tests/030_roles/032_roles_and_method_cloning.t diff --git a/t/030_roles/033_role_exclusion_and_alias_bug.t b/tests/030_roles/033_role_exclusion_and_alias_bug.t similarity index 100% rename from t/030_roles/033_role_exclusion_and_alias_bug.t rename to tests/030_roles/033_role_exclusion_and_alias_bug.t diff --git a/t/030_roles/034_create_role.t b/tests/030_roles/034_create_role.t similarity index 100% rename from t/030_roles/034_create_role.t rename to tests/030_roles/034_create_role.t diff --git a/t/030_roles/035_anonymous_roles.t b/tests/030_roles/035_anonymous_roles.t similarity index 100% rename from t/030_roles/035_anonymous_roles.t rename to tests/030_roles/035_anonymous_roles.t diff --git a/t/030_roles/036_free_anonymous_roles.t b/tests/030_roles/036_free_anonymous_roles.t similarity index 100% rename from t/030_roles/036_free_anonymous_roles.t rename to tests/030_roles/036_free_anonymous_roles.t diff --git a/t/030_roles/037_create_role_subclass.t b/tests/030_roles/037_create_role_subclass.t similarity index 100% rename from t/030_roles/037_create_role_subclass.t rename to tests/030_roles/037_create_role_subclass.t diff --git a/t/030_roles/038_new_meta_role.t b/tests/030_roles/038_new_meta_role.t similarity index 100% rename from t/030_roles/038_new_meta_role.t rename to tests/030_roles/038_new_meta_role.t diff --git a/t/030_roles/039_application_toclass.t b/tests/030_roles/039_application_toclass.t similarity index 100% rename from t/030_roles/039_application_toclass.t rename to tests/030_roles/039_application_toclass.t diff --git a/t/030_roles/040_role_for_combination.t b/tests/030_roles/040_role_for_combination.t similarity index 100% rename from t/030_roles/040_role_for_combination.t rename to tests/030_roles/040_role_for_combination.t diff --git a/t/030_roles/041_empty_method_modifiers_meta_bug.t b/tests/030_roles/041_empty_method_modifiers_meta_bug.t similarity index 100% rename from t/030_roles/041_empty_method_modifiers_meta_bug.t rename to tests/030_roles/041_empty_method_modifiers_meta_bug.t diff --git a/t/030_roles/042_compose_overloading.t b/tests/030_roles/042_compose_overloading.t similarity index 100% rename from t/030_roles/042_compose_overloading.t rename to tests/030_roles/042_compose_overloading.t diff --git a/t/030_roles/043_conflict_many_methods.t b/tests/030_roles/043_conflict_many_methods.t similarity index 100% rename from t/030_roles/043_conflict_many_methods.t rename to tests/030_roles/043_conflict_many_methods.t diff --git a/t/040_type_constraints/001_util_type_constraints.t b/tests/040_type_constraints/001_util_type_constraints.t similarity index 100% rename from t/040_type_constraints/001_util_type_constraints.t rename to tests/040_type_constraints/001_util_type_constraints.t diff --git a/t/040_type_constraints/002_util_type_constraints_export.t b/tests/040_type_constraints/002_util_type_constraints_export.t similarity index 100% rename from t/040_type_constraints/002_util_type_constraints_export.t rename to tests/040_type_constraints/002_util_type_constraints_export.t diff --git a/t/040_type_constraints/003_util_std_type_constraints.t b/tests/040_type_constraints/003_util_std_type_constraints.t similarity index 100% rename from t/040_type_constraints/003_util_std_type_constraints.t rename to tests/040_type_constraints/003_util_std_type_constraints.t diff --git a/t/040_type_constraints/004_util_find_type_constraint.t b/tests/040_type_constraints/004_util_find_type_constraint.t similarity index 100% rename from t/040_type_constraints/004_util_find_type_constraint.t rename to tests/040_type_constraints/004_util_find_type_constraint.t diff --git a/t/040_type_constraints/005_util_type_coercion.t b/tests/040_type_constraints/005_util_type_coercion.t similarity index 100% rename from t/040_type_constraints/005_util_type_coercion.t rename to tests/040_type_constraints/005_util_type_coercion.t diff --git a/t/040_type_constraints/006_util_type_reloading.t b/tests/040_type_constraints/006_util_type_reloading.t similarity index 100% rename from t/040_type_constraints/006_util_type_reloading.t rename to tests/040_type_constraints/006_util_type_reloading.t diff --git a/t/040_type_constraints/007_util_more_type_coercion.t b/tests/040_type_constraints/007_util_more_type_coercion.t similarity index 100% rename from t/040_type_constraints/007_util_more_type_coercion.t rename to tests/040_type_constraints/007_util_more_type_coercion.t diff --git a/t/040_type_constraints/008_union_types.t b/tests/040_type_constraints/008_union_types.t similarity index 100% rename from t/040_type_constraints/008_union_types.t rename to tests/040_type_constraints/008_union_types.t diff --git a/t/040_type_constraints/009_union_types_and_coercions.t b/tests/040_type_constraints/009_union_types_and_coercions.t similarity index 100% rename from t/040_type_constraints/009_union_types_and_coercions.t rename to tests/040_type_constraints/009_union_types_and_coercions.t diff --git a/t/040_type_constraints/010_misc_type_tests.t b/tests/040_type_constraints/010_misc_type_tests.t similarity index 100% rename from t/040_type_constraints/010_misc_type_tests.t rename to tests/040_type_constraints/010_misc_type_tests.t diff --git a/t/040_type_constraints/011_container_type_constraint.t b/tests/040_type_constraints/011_container_type_constraint.t similarity index 100% rename from t/040_type_constraints/011_container_type_constraint.t rename to tests/040_type_constraints/011_container_type_constraint.t diff --git a/t/040_type_constraints/012_container_type_coercion.t b/tests/040_type_constraints/012_container_type_coercion.t similarity index 100% rename from t/040_type_constraints/012_container_type_coercion.t rename to tests/040_type_constraints/012_container_type_coercion.t diff --git a/t/040_type_constraints/013_advanced_type_creation.t b/tests/040_type_constraints/013_advanced_type_creation.t similarity index 100% rename from t/040_type_constraints/013_advanced_type_creation.t rename to tests/040_type_constraints/013_advanced_type_creation.t diff --git a/t/040_type_constraints/014_type_notation_parser.t b/tests/040_type_constraints/014_type_notation_parser.t similarity index 100% rename from t/040_type_constraints/014_type_notation_parser.t rename to tests/040_type_constraints/014_type_notation_parser.t diff --git a/t/040_type_constraints/015_enum.t b/tests/040_type_constraints/015_enum.t similarity index 100% rename from t/040_type_constraints/015_enum.t rename to tests/040_type_constraints/015_enum.t diff --git a/t/040_type_constraints/016_subtyping_parameterized_types.t b/tests/040_type_constraints/016_subtyping_parameterized_types.t similarity index 100% rename from t/040_type_constraints/016_subtyping_parameterized_types.t rename to tests/040_type_constraints/016_subtyping_parameterized_types.t diff --git a/t/040_type_constraints/017_subtyping_union_types.t b/tests/040_type_constraints/017_subtyping_union_types.t similarity index 100% rename from t/040_type_constraints/017_subtyping_union_types.t rename to tests/040_type_constraints/017_subtyping_union_types.t diff --git a/t/040_type_constraints/018_custom_parameterized_types.t b/tests/040_type_constraints/018_custom_parameterized_types.t similarity index 100% rename from t/040_type_constraints/018_custom_parameterized_types.t rename to tests/040_type_constraints/018_custom_parameterized_types.t diff --git a/t/040_type_constraints/019_coerced_parameterized_types.t b/tests/040_type_constraints/019_coerced_parameterized_types.t similarity index 100% rename from t/040_type_constraints/019_coerced_parameterized_types.t rename to tests/040_type_constraints/019_coerced_parameterized_types.t diff --git a/t/040_type_constraints/020_class_type_constraint.t b/tests/040_type_constraints/020_class_type_constraint.t similarity index 100% rename from t/040_type_constraints/020_class_type_constraint.t rename to tests/040_type_constraints/020_class_type_constraint.t diff --git a/t/040_type_constraints/021_maybe_type_constraint.t b/tests/040_type_constraints/021_maybe_type_constraint.t similarity index 100% rename from t/040_type_constraints/021_maybe_type_constraint.t rename to tests/040_type_constraints/021_maybe_type_constraint.t diff --git a/t/040_type_constraints/022_custom_type_errors.t b/tests/040_type_constraints/022_custom_type_errors.t similarity index 100% rename from t/040_type_constraints/022_custom_type_errors.t rename to tests/040_type_constraints/022_custom_type_errors.t diff --git a/t/040_type_constraints/023_types_and_undef.t b/tests/040_type_constraints/023_types_and_undef.t similarity index 100% rename from t/040_type_constraints/023_types_and_undef.t rename to tests/040_type_constraints/023_types_and_undef.t diff --git a/t/040_type_constraints/024_role_type_constraint.t b/tests/040_type_constraints/024_role_type_constraint.t similarity index 100% rename from t/040_type_constraints/024_role_type_constraint.t rename to tests/040_type_constraints/024_role_type_constraint.t diff --git a/t/040_type_constraints/025_type_coersion_on_lazy_attributes.t b/tests/040_type_constraints/025_type_coersion_on_lazy_attributes.t similarity index 100% rename from t/040_type_constraints/025_type_coersion_on_lazy_attributes.t rename to tests/040_type_constraints/025_type_coersion_on_lazy_attributes.t diff --git a/t/040_type_constraints/026_normalize_type_name.t b/tests/040_type_constraints/026_normalize_type_name.t similarity index 100% rename from t/040_type_constraints/026_normalize_type_name.t rename to tests/040_type_constraints/026_normalize_type_name.t diff --git a/t/040_type_constraints/027_parameterize_from.t b/tests/040_type_constraints/027_parameterize_from.t similarity index 100% rename from t/040_type_constraints/027_parameterize_from.t rename to tests/040_type_constraints/027_parameterize_from.t diff --git a/t/040_type_constraints/029_define_type_twice_throws.t b/tests/040_type_constraints/029_define_type_twice_throws.t similarity index 100% rename from t/040_type_constraints/029_define_type_twice_throws.t rename to tests/040_type_constraints/029_define_type_twice_throws.t diff --git a/t/040_type_constraints/030_class_subtypes.t b/tests/040_type_constraints/030_class_subtypes.t similarity index 100% rename from t/040_type_constraints/030_class_subtypes.t rename to tests/040_type_constraints/030_class_subtypes.t diff --git a/t/040_type_constraints/031_subtype_auto_vivify_parent.t b/tests/040_type_constraints/031_subtype_auto_vivify_parent.t similarity index 100% rename from t/040_type_constraints/031_subtype_auto_vivify_parent.t rename to tests/040_type_constraints/031_subtype_auto_vivify_parent.t diff --git a/t/040_type_constraints/032_throw_error.t b/tests/040_type_constraints/032_throw_error.t similarity index 100% rename from t/040_type_constraints/032_throw_error.t rename to tests/040_type_constraints/032_throw_error.t diff --git a/t/040_type_constraints/033_type_names.t b/tests/040_type_constraints/033_type_names.t similarity index 100% rename from t/040_type_constraints/033_type_names.t rename to tests/040_type_constraints/033_type_names.t diff --git a/t/040_type_constraints/034_duck_types.t b/tests/040_type_constraints/034_duck_types.t similarity index 100% rename from t/040_type_constraints/034_duck_types.t rename to tests/040_type_constraints/034_duck_types.t diff --git a/t/040_type_constraints/035_duck_type_handles.t b/tests/040_type_constraints/035_duck_type_handles.t similarity index 100% rename from t/040_type_constraints/035_duck_type_handles.t rename to tests/040_type_constraints/035_duck_type_handles.t diff --git a/t/050_metaclasses/001_custom_attr_meta_with_roles.t b/tests/050_metaclasses/001_custom_attr_meta_with_roles.t similarity index 100% rename from t/050_metaclasses/001_custom_attr_meta_with_roles.t rename to tests/050_metaclasses/001_custom_attr_meta_with_roles.t diff --git a/t/050_metaclasses/002_custom_attr_meta_as_role.t b/tests/050_metaclasses/002_custom_attr_meta_as_role.t similarity index 100% rename from t/050_metaclasses/002_custom_attr_meta_as_role.t rename to tests/050_metaclasses/002_custom_attr_meta_as_role.t diff --git a/t/050_metaclasses/003_moose_w_metaclass.t b/tests/050_metaclasses/003_moose_w_metaclass.t similarity index 100% rename from t/050_metaclasses/003_moose_w_metaclass.t rename to tests/050_metaclasses/003_moose_w_metaclass.t diff --git a/t/050_metaclasses/004_moose_for_meta.t b/tests/050_metaclasses/004_moose_for_meta.t similarity index 100% rename from t/050_metaclasses/004_moose_for_meta.t rename to tests/050_metaclasses/004_moose_for_meta.t diff --git a/t/050_metaclasses/010_extending_and_embedding_back_compat.t b/tests/050_metaclasses/010_extending_and_embedding_back_compat.t similarity index 100% rename from t/050_metaclasses/010_extending_and_embedding_back_compat.t rename to tests/050_metaclasses/010_extending_and_embedding_back_compat.t diff --git a/t/050_metaclasses/011_init_meta.t b/tests/050_metaclasses/011_init_meta.t similarity index 100% rename from t/050_metaclasses/011_init_meta.t rename to tests/050_metaclasses/011_init_meta.t diff --git a/t/050_metaclasses/012_moose_exporter.t b/tests/050_metaclasses/012_moose_exporter.t similarity index 100% rename from t/050_metaclasses/012_moose_exporter.t rename to tests/050_metaclasses/012_moose_exporter.t diff --git a/t/050_metaclasses/013_metaclass_traits.t b/tests/050_metaclasses/013_metaclass_traits.t similarity index 100% rename from t/050_metaclasses/013_metaclass_traits.t rename to tests/050_metaclasses/013_metaclass_traits.t diff --git a/t/050_metaclasses/014_goto_moose_import.t b/tests/050_metaclasses/014_goto_moose_import.t similarity index 100% rename from t/050_metaclasses/014_goto_moose_import.t rename to tests/050_metaclasses/014_goto_moose_import.t diff --git a/t/050_metaclasses/015_metarole.t b/tests/050_metaclasses/015_metarole.t similarity index 100% rename from t/050_metaclasses/015_metarole.t rename to tests/050_metaclasses/015_metarole.t diff --git a/t/050_metaclasses/016_metarole_w_metaclass_pm.t b/tests/050_metaclasses/016_metarole_w_metaclass_pm.t similarity index 100% rename from t/050_metaclasses/016_metarole_w_metaclass_pm.t rename to tests/050_metaclasses/016_metarole_w_metaclass_pm.t diff --git a/t/050_metaclasses/017_use_base_of_moose.t b/tests/050_metaclasses/017_use_base_of_moose.t similarity index 100% rename from t/050_metaclasses/017_use_base_of_moose.t rename to tests/050_metaclasses/017_use_base_of_moose.t diff --git a/t/050_metaclasses/018_throw_error.t b/tests/050_metaclasses/018_throw_error.t similarity index 100% rename from t/050_metaclasses/018_throw_error.t rename to tests/050_metaclasses/018_throw_error.t diff --git a/t/050_metaclasses/019_create_anon_with_required_attr.t b/tests/050_metaclasses/019_create_anon_with_required_attr.t similarity index 100% rename from t/050_metaclasses/019_create_anon_with_required_attr.t rename to tests/050_metaclasses/019_create_anon_with_required_attr.t diff --git a/t/050_metaclasses/020_metaclass_parameterized_traits.t b/tests/050_metaclasses/020_metaclass_parameterized_traits.t similarity index 100% rename from t/050_metaclasses/020_metaclass_parameterized_traits.t rename to tests/050_metaclasses/020_metaclass_parameterized_traits.t diff --git a/t/050_metaclasses/021_export_with_prototype.t b/tests/050_metaclasses/021_export_with_prototype.t similarity index 100% rename from t/050_metaclasses/021_export_with_prototype.t rename to tests/050_metaclasses/021_export_with_prototype.t diff --git a/t/050_metaclasses/022_new_metaclass.t b/tests/050_metaclasses/022_new_metaclass.t similarity index 100% rename from t/050_metaclasses/022_new_metaclass.t rename to tests/050_metaclasses/022_new_metaclass.t diff --git a/t/060_compat/001_module_refresh_compat.t b/tests/060_compat/001_module_refresh_compat.t similarity index 100% rename from t/060_compat/001_module_refresh_compat.t rename to tests/060_compat/001_module_refresh_compat.t diff --git a/t/060_compat/002_moose_respects_base.t b/tests/060_compat/002_moose_respects_base.t similarity index 100% rename from t/060_compat/002_moose_respects_base.t rename to tests/060_compat/002_moose_respects_base.t diff --git a/t/060_compat/003_foreign_inheritence.t b/tests/060_compat/003_foreign_inheritence.t similarity index 100% rename from t/060_compat/003_foreign_inheritence.t rename to tests/060_compat/003_foreign_inheritence.t diff --git a/t/060_compat/004_extends_nonmoose_that_isa_moose_with_metarole.t b/tests/060_compat/004_extends_nonmoose_that_isa_moose_with_metarole.t similarity index 100% rename from t/060_compat/004_extends_nonmoose_that_isa_moose_with_metarole.t rename to tests/060_compat/004_extends_nonmoose_that_isa_moose_with_metarole.t diff --git a/t/100_bugs/001_subtype_quote_bug.t b/tests/100_bugs/001_subtype_quote_bug.t similarity index 100% rename from t/100_bugs/001_subtype_quote_bug.t rename to tests/100_bugs/001_subtype_quote_bug.t diff --git a/t/100_bugs/002_subtype_conflict_bug.t b/tests/100_bugs/002_subtype_conflict_bug.t similarity index 100% rename from t/100_bugs/002_subtype_conflict_bug.t rename to tests/100_bugs/002_subtype_conflict_bug.t diff --git a/t/100_bugs/003_Moose_Object_error.t b/tests/100_bugs/003_Moose_Object_error.t similarity index 100% rename from t/100_bugs/003_Moose_Object_error.t rename to tests/100_bugs/003_Moose_Object_error.t diff --git a/t/100_bugs/004_subclass_use_base_bug.t b/tests/100_bugs/004_subclass_use_base_bug.t similarity index 100% rename from t/100_bugs/004_subclass_use_base_bug.t rename to tests/100_bugs/004_subclass_use_base_bug.t diff --git a/t/100_bugs/005_inline_reader_bug.t b/tests/100_bugs/005_inline_reader_bug.t similarity index 100% rename from t/100_bugs/005_inline_reader_bug.t rename to tests/100_bugs/005_inline_reader_bug.t diff --git a/t/100_bugs/006_handles_foreign_class_bug.t b/tests/100_bugs/006_handles_foreign_class_bug.t similarity index 100% rename from t/100_bugs/006_handles_foreign_class_bug.t rename to tests/100_bugs/006_handles_foreign_class_bug.t diff --git a/t/100_bugs/007_reader_precedence_bug.t b/tests/100_bugs/007_reader_precedence_bug.t similarity index 100% rename from t/100_bugs/007_reader_precedence_bug.t rename to tests/100_bugs/007_reader_precedence_bug.t diff --git a/t/100_bugs/009_augment_recursion_bug.t b/tests/100_bugs/009_augment_recursion_bug.t similarity index 100% rename from t/100_bugs/009_augment_recursion_bug.t rename to tests/100_bugs/009_augment_recursion_bug.t diff --git a/t/100_bugs/010_immutable_n_default_x2.t b/tests/100_bugs/010_immutable_n_default_x2.t similarity index 100% rename from t/100_bugs/010_immutable_n_default_x2.t rename to tests/100_bugs/010_immutable_n_default_x2.t diff --git a/t/100_bugs/011_DEMOLISH_eats_exceptions.t b/tests/100_bugs/011_DEMOLISH_eats_exceptions.t similarity index 100% rename from t/100_bugs/011_DEMOLISH_eats_exceptions.t rename to tests/100_bugs/011_DEMOLISH_eats_exceptions.t diff --git a/t/100_bugs/012_DEMOLISH_eats_mini.t b/tests/100_bugs/012_DEMOLISH_eats_mini.t similarity index 100% rename from t/100_bugs/012_DEMOLISH_eats_mini.t rename to tests/100_bugs/012_DEMOLISH_eats_mini.t diff --git a/t/100_bugs/013_lazybuild_required_undef.t b/tests/100_bugs/013_lazybuild_required_undef.t similarity index 100% rename from t/100_bugs/013_lazybuild_required_undef.t rename to tests/100_bugs/013_lazybuild_required_undef.t diff --git a/t/100_bugs/014_DEMOLISHALL.t b/tests/100_bugs/014_DEMOLISHALL.t similarity index 100% rename from t/100_bugs/014_DEMOLISHALL.t rename to tests/100_bugs/014_DEMOLISHALL.t diff --git a/t/100_bugs/016_inheriting_from_roles.t b/tests/100_bugs/016_inheriting_from_roles.t similarity index 100% rename from t/100_bugs/016_inheriting_from_roles.t rename to tests/100_bugs/016_inheriting_from_roles.t diff --git a/t/100_bugs/017_type_constraint_messages.t b/tests/100_bugs/017_type_constraint_messages.t similarity index 100% rename from t/100_bugs/017_type_constraint_messages.t rename to tests/100_bugs/017_type_constraint_messages.t diff --git a/t/100_bugs/018_immutable_metaclass_does_role.t b/tests/100_bugs/018_immutable_metaclass_does_role.t similarity index 100% rename from t/100_bugs/018_immutable_metaclass_does_role.t rename to tests/100_bugs/018_immutable_metaclass_does_role.t diff --git a/t/100_bugs/019_moose_octal_defaults.t b/tests/100_bugs/019_moose_octal_defaults.t similarity index 100% rename from t/100_bugs/019_moose_octal_defaults.t rename to tests/100_bugs/019_moose_octal_defaults.t diff --git a/t/100_bugs/020_super_recursion.t b/tests/100_bugs/020_super_recursion.t similarity index 100% rename from t/100_bugs/020_super_recursion.t rename to tests/100_bugs/020_super_recursion.t diff --git a/t/100_bugs/021_DEMOLISHALL_shortcutted.t b/tests/100_bugs/021_DEMOLISHALL_shortcutted.t similarity index 100% rename from t/100_bugs/021_DEMOLISHALL_shortcutted.t rename to tests/100_bugs/021_DEMOLISHALL_shortcutted.t diff --git a/t/100_bugs/022_role_caller.t b/tests/100_bugs/022_role_caller.t similarity index 100% rename from t/100_bugs/022_role_caller.t rename to tests/100_bugs/022_role_caller.t diff --git a/t/100_bugs/023_DEMOLISH_fails_without_metaclass.t b/tests/100_bugs/023_DEMOLISH_fails_without_metaclass.t similarity index 100% rename from t/100_bugs/023_DEMOLISH_fails_without_metaclass.t rename to tests/100_bugs/023_DEMOLISH_fails_without_metaclass.t diff --git a/t/100_bugs/024_anon_method_metaclass.t b/tests/100_bugs/024_anon_method_metaclass.t similarity index 100% rename from t/100_bugs/024_anon_method_metaclass.t rename to tests/100_bugs/024_anon_method_metaclass.t diff --git a/t/100_bugs/025_universal_methods_wrappable.t b/tests/100_bugs/025_universal_methods_wrappable.t similarity index 100% rename from t/100_bugs/025_universal_methods_wrappable.t rename to tests/100_bugs/025_universal_methods_wrappable.t diff --git a/t/100_bugs/026_create_anon_recursion.t b/tests/100_bugs/026_create_anon_recursion.t similarity index 100% rename from t/100_bugs/026_create_anon_recursion.t rename to tests/100_bugs/026_create_anon_recursion.t diff --git a/t/200_examples/001_example.t b/tests/200_examples/001_example.t similarity index 100% rename from t/200_examples/001_example.t rename to tests/200_examples/001_example.t diff --git a/t/200_examples/002_example_Moose_POOP.t b/tests/200_examples/002_example_Moose_POOP.t similarity index 100% rename from t/200_examples/002_example_Moose_POOP.t rename to tests/200_examples/002_example_Moose_POOP.t diff --git a/t/200_examples/003_example.t b/tests/200_examples/003_example.t similarity index 100% rename from t/200_examples/003_example.t rename to tests/200_examples/003_example.t diff --git a/t/200_examples/004_example_w_DCS.t b/tests/200_examples/004_example_w_DCS.t similarity index 100% rename from t/200_examples/004_example_w_DCS.t rename to tests/200_examples/004_example_w_DCS.t diff --git a/t/200_examples/005_example_w_TestDeep.t b/tests/200_examples/005_example_w_TestDeep.t similarity index 100% rename from t/200_examples/005_example_w_TestDeep.t rename to tests/200_examples/005_example_w_TestDeep.t diff --git a/t/200_examples/006_example_Protomoose.t b/tests/200_examples/006_example_Protomoose.t similarity index 100% rename from t/200_examples/006_example_Protomoose.t rename to tests/200_examples/006_example_Protomoose.t diff --git a/t/200_examples/007_Child_Parent_attr_inherit.t b/tests/200_examples/007_Child_Parent_attr_inherit.t similarity index 100% rename from t/200_examples/007_Child_Parent_attr_inherit.t rename to tests/200_examples/007_Child_Parent_attr_inherit.t diff --git a/t/200_examples/008_record_set_iterator.t b/tests/200_examples/008_record_set_iterator.t similarity index 100% rename from t/200_examples/008_record_set_iterator.t rename to tests/200_examples/008_record_set_iterator.t diff --git a/t/300_immutable/001_immutable_moose.t b/tests/300_immutable/001_immutable_moose.t similarity index 100% rename from t/300_immutable/001_immutable_moose.t rename to tests/300_immutable/001_immutable_moose.t diff --git a/t/300_immutable/002_apply_roles_to_immutable.t b/tests/300_immutable/002_apply_roles_to_immutable.t similarity index 100% rename from t/300_immutable/002_apply_roles_to_immutable.t rename to tests/300_immutable/002_apply_roles_to_immutable.t diff --git a/t/300_immutable/003_immutable_meta_class.t b/tests/300_immutable/003_immutable_meta_class.t similarity index 100% rename from t/300_immutable/003_immutable_meta_class.t rename to tests/300_immutable/003_immutable_meta_class.t diff --git a/t/300_immutable/004_inlined_constructors_n_types.t b/tests/300_immutable/004_inlined_constructors_n_types.t similarity index 100% rename from t/300_immutable/004_inlined_constructors_n_types.t rename to tests/300_immutable/004_inlined_constructors_n_types.t diff --git a/t/300_immutable/005_multiple_demolish_inline.t b/tests/300_immutable/005_multiple_demolish_inline.t similarity index 100% rename from t/300_immutable/005_multiple_demolish_inline.t rename to tests/300_immutable/005_multiple_demolish_inline.t diff --git a/t/300_immutable/007_immutable_trigger_from_constructor.t b/tests/300_immutable/007_immutable_trigger_from_constructor.t similarity index 100% rename from t/300_immutable/007_immutable_trigger_from_constructor.t rename to tests/300_immutable/007_immutable_trigger_from_constructor.t diff --git a/t/300_immutable/008_immutable_constructor_error.t b/tests/300_immutable/008_immutable_constructor_error.t similarity index 100% rename from t/300_immutable/008_immutable_constructor_error.t rename to tests/300_immutable/008_immutable_constructor_error.t diff --git a/t/300_immutable/009_buildargs.t b/tests/300_immutable/009_buildargs.t similarity index 100% rename from t/300_immutable/009_buildargs.t rename to tests/300_immutable/009_buildargs.t diff --git a/t/300_immutable/010_constructor_is_not_moose.t b/tests/300_immutable/010_constructor_is_not_moose.t similarity index 100% rename from t/300_immutable/010_constructor_is_not_moose.t rename to tests/300_immutable/010_constructor_is_not_moose.t diff --git a/t/300_immutable/011_constructor_is_wrapped.t b/tests/300_immutable/011_constructor_is_wrapped.t similarity index 100% rename from t/300_immutable/011_constructor_is_wrapped.t rename to tests/300_immutable/011_constructor_is_wrapped.t diff --git a/t/300_immutable/012_default_values.t b/tests/300_immutable/012_default_values.t similarity index 100% rename from t/300_immutable/012_default_values.t rename to tests/300_immutable/012_default_values.t diff --git a/t/300_immutable/013_immutable_roundtrip.t b/tests/300_immutable/013_immutable_roundtrip.t similarity index 100% rename from t/300_immutable/013_immutable_roundtrip.t rename to tests/300_immutable/013_immutable_roundtrip.t diff --git a/t/300_immutable/014_immutable_metaclass_with_traits.t b/tests/300_immutable/014_immutable_metaclass_with_traits.t similarity index 100% rename from t/300_immutable/014_immutable_metaclass_with_traits.t rename to tests/300_immutable/014_immutable_metaclass_with_traits.t diff --git a/t/300_immutable/015_immutable_destroy.t b/tests/300_immutable/015_immutable_destroy.t similarity index 100% rename from t/300_immutable/015_immutable_destroy.t rename to tests/300_immutable/015_immutable_destroy.t diff --git a/t/400_moose_util/001_moose_util.t b/tests/400_moose_util/001_moose_util.t similarity index 100% rename from t/400_moose_util/001_moose_util.t rename to tests/400_moose_util/001_moose_util.t diff --git a/t/400_moose_util/002_moose_util_does_role.t b/tests/400_moose_util/002_moose_util_does_role.t similarity index 100% rename from t/400_moose_util/002_moose_util_does_role.t rename to tests/400_moose_util/002_moose_util_does_role.t diff --git a/t/400_moose_util/003_moose_util_search_class_by_role.t b/tests/400_moose_util/003_moose_util_search_class_by_role.t similarity index 100% rename from t/400_moose_util/003_moose_util_search_class_by_role.t rename to tests/400_moose_util/003_moose_util_search_class_by_role.t diff --git a/t/400_moose_util/004_resolve_alias.t b/tests/400_moose_util/004_resolve_alias.t similarity index 100% rename from t/400_moose_util/004_resolve_alias.t rename to tests/400_moose_util/004_resolve_alias.t diff --git a/t/400_moose_util/005_ensure_all_roles.t b/tests/400_moose_util/005_ensure_all_roles.t similarity index 100% rename from t/400_moose_util/005_ensure_all_roles.t rename to tests/400_moose_util/005_ensure_all_roles.t diff --git a/t/500_test_moose/001_test_moose.t b/tests/500_test_moose/001_test_moose.t similarity index 100% rename from t/500_test_moose/001_test_moose.t rename to tests/500_test_moose/001_test_moose.t diff --git a/t/500_test_moose/002_test_moose_does_ok.t b/tests/500_test_moose/002_test_moose_does_ok.t similarity index 100% rename from t/500_test_moose/002_test_moose_does_ok.t rename to tests/500_test_moose/002_test_moose_does_ok.t diff --git a/t/500_test_moose/003_test_moose_has_attribute_ok.t b/tests/500_test_moose/003_test_moose_has_attribute_ok.t similarity index 100% rename from t/500_test_moose/003_test_moose_has_attribute_ok.t rename to tests/500_test_moose/003_test_moose_has_attribute_ok.t diff --git a/t/500_test_moose/004_test_moose_meta_ok.t b/tests/500_test_moose/004_test_moose_meta_ok.t similarity index 100% rename from t/500_test_moose/004_test_moose_meta_ok.t rename to tests/500_test_moose/004_test_moose_meta_ok.t diff --git a/t/600_todo_tests/001_exception_reflects_failed_constraint.t b/tests/600_todo_tests/001_exception_reflects_failed_constraint.t similarity index 100% rename from t/600_todo_tests/001_exception_reflects_failed_constraint.t rename to tests/600_todo_tests/001_exception_reflects_failed_constraint.t diff --git a/t/600_todo_tests/002_various_role_features.t b/tests/600_todo_tests/002_various_role_features.t similarity index 100% rename from t/600_todo_tests/002_various_role_features.t rename to tests/600_todo_tests/002_various_role_features.t diff --git a/t/600_todo_tests/003_immutable_n_around.t b/tests/600_todo_tests/003_immutable_n_around.t similarity index 100% rename from t/600_todo_tests/003_immutable_n_around.t rename to tests/600_todo_tests/003_immutable_n_around.t diff --git a/t/600_todo_tests/005_moose_and_threads.t b/tests/600_todo_tests/005_moose_and_threads.t similarity index 100% rename from t/600_todo_tests/005_moose_and_threads.t rename to tests/600_todo_tests/005_moose_and_threads.t diff --git a/t/600_todo_tests/006_moose_nonmoose_metatrait_init_order.t b/tests/600_todo_tests/006_moose_nonmoose_metatrait_init_order.t similarity index 100% rename from t/600_todo_tests/006_moose_nonmoose_metatrait_init_order.t rename to tests/600_todo_tests/006_moose_nonmoose_metatrait_init_order.t diff --git a/t/600_todo_tests/007_moose_nonmoose_moose_chain_init_meta.t b/tests/600_todo_tests/007_moose_nonmoose_moose_chain_init_meta.t similarity index 100% rename from t/600_todo_tests/007_moose_nonmoose_moose_chain_init_meta.t rename to tests/600_todo_tests/007_moose_nonmoose_moose_chain_init_meta.t diff --git a/t/lib/Bar.pm b/tests/lib/Bar.pm similarity index 100% rename from t/lib/Bar.pm rename to tests/lib/Bar.pm diff --git a/t/lib/Foo.pm b/tests/lib/Foo.pm similarity index 100% rename from t/lib/Foo.pm rename to tests/lib/Foo.pm diff --git a/t/lib/Moose/Meta/Attribute/Custom/Bar.pm b/tests/lib/Moose/Meta/Attribute/Custom/Bar.pm similarity index 100% rename from t/lib/Moose/Meta/Attribute/Custom/Bar.pm rename to tests/lib/Moose/Meta/Attribute/Custom/Bar.pm diff --git a/t/lib/Moose/Meta/Attribute/Custom/Foo.pm b/tests/lib/Moose/Meta/Attribute/Custom/Foo.pm similarity index 100% rename from t/lib/Moose/Meta/Attribute/Custom/Foo.pm rename to tests/lib/Moose/Meta/Attribute/Custom/Foo.pm diff --git a/t/lib/Moose/Meta/Attribute/Custom/Trait/Bar.pm b/tests/lib/Moose/Meta/Attribute/Custom/Trait/Bar.pm similarity index 100% rename from t/lib/Moose/Meta/Attribute/Custom/Trait/Bar.pm rename to tests/lib/Moose/Meta/Attribute/Custom/Trait/Bar.pm diff --git a/t/lib/Moose/Meta/Attribute/Custom/Trait/Foo.pm b/tests/lib/Moose/Meta/Attribute/Custom/Trait/Foo.pm similarity index 100% rename from t/lib/Moose/Meta/Attribute/Custom/Trait/Foo.pm rename to tests/lib/Moose/Meta/Attribute/Custom/Trait/Foo.pm diff --git a/t/lib/MyExporter.pm b/tests/lib/MyExporter.pm similarity index 100% rename from t/lib/MyExporter.pm rename to tests/lib/MyExporter.pm diff --git a/t/lib/MyMetaclassRole.pm b/tests/lib/MyMetaclassRole.pm similarity index 100% rename from t/lib/MyMetaclassRole.pm rename to tests/lib/MyMetaclassRole.pm diff --git a/t/lib/MyMooseA.pm b/tests/lib/MyMooseA.pm similarity index 100% rename from t/lib/MyMooseA.pm rename to tests/lib/MyMooseA.pm diff --git a/t/lib/MyMooseB.pm b/tests/lib/MyMooseB.pm similarity index 100% rename from t/lib/MyMooseB.pm rename to tests/lib/MyMooseB.pm diff --git a/t/lib/MyMooseObject.pm b/tests/lib/MyMooseObject.pm similarity index 100% rename from t/lib/MyMooseObject.pm rename to tests/lib/MyMooseObject.pm diff --git a/t/lib/Role/Child.pm b/tests/lib/Role/Child.pm similarity index 100% rename from t/lib/Role/Child.pm rename to tests/lib/Role/Child.pm diff --git a/t/lib/Role/Interface.pm b/tests/lib/Role/Interface.pm similarity index 100% rename from t/lib/Role/Interface.pm rename to tests/lib/Role/Interface.pm diff --git a/t/lib/Role/Parent.pm b/tests/lib/Role/Parent.pm similarity index 100% rename from t/lib/Role/Parent.pm rename to tests/lib/Role/Parent.pm