summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-15 01:36:37 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-15 01:36:37 -0500
commit60c5f48aff6a579ce22bd4b4245f7be346609901 (patch)
tree7025b94a0470cef60d9c3694d0dbf247f5b30aaa /t
parent571bfa3b91ff5567338948776b6fce84d3ede09e (diff)
downloadmoosex-nonmoose-60c5f48aff6a579ce22bd4b4245f7be346609901.tar.gz
moosex-nonmoose-60c5f48aff6a579ce22bd4b4245f7be346609901.zip
convert to new dzil stuff
Diffstat (limited to 't')
-rw-r--r--t/000-load.t9
-rw-r--r--t/01-basic.t (renamed from t/001-basic.t)0
-rw-r--r--t/02-methods.t (renamed from t/002-methods.t)0
-rw-r--r--t/03-attrs.t (renamed from t/003-attrs.t)0
-rw-r--r--t/04-multi-level.t (renamed from t/004-multi-level.t)0
-rw-r--r--t/05-moose.t (renamed from t/005-moose.t)0
-rw-r--r--t/06-disable.t (renamed from t/006-disable.t)0
-rw-r--r--t/10-immutable.t (renamed from t/010-immutable.t)0
-rw-r--r--t/20-BUILD.t (renamed from t/020-BUILD.t)0
-rw-r--r--t/21-BUILDARGS.t (renamed from t/021-BUILDARGS.t)0
-rw-r--r--t/22-replaced-constructor.t (renamed from t/022-replaced-constructor.t)0
-rw-r--r--t/23-FOREIGNBUILDARGS.t (renamed from t/023-FOREIGNBUILDARGS.t)0
-rw-r--r--t/24-nonmoose-moose-nonmoose.t (renamed from t/024-nonmoose-moose-nonmoose.t)0
-rw-r--r--t/25-constructor-method-calls.t (renamed from t/025-constructor-method-calls.t)0
-rw-r--r--t/30-only-metaclass-trait.t (renamed from t/030-only-metaclass-trait.t)0
-rw-r--r--t/31-moose-exporter.t (renamed from t/031-moose-exporter.t)0
-rw-r--r--t/32-moosex-insideout.t (renamed from t/032-moosex-insideout.t)0
-rw-r--r--t/33-moosex-globref.t (renamed from t/033-moosex-globref.t)0
-rw-r--r--t/40-destructor.t (renamed from t/040-destructor.t)0
-rw-r--r--t/50-buggy-constructor-inlining.t (renamed from t/100-buggy-constructor-inlining.t)0
-rw-r--r--t/51-buggy-constructors.t (renamed from t/101-buggy-constructors.t)0
21 files changed, 0 insertions, 9 deletions
diff --git a/t/000-load.t b/t/000-load.t
deleted file mode 100644
index 03ac467..0000000
--- a/t/000-load.t
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More tests => 1;
-
-package Foo;
-use Moose;
-::use_ok('MooseX::NonMoose')
- or ::BAIL_OUT("couldn't load MooseX::NonMoose");
diff --git a/t/001-basic.t b/t/01-basic.t
index a448abf..a448abf 100644
--- a/t/001-basic.t
+++ b/t/01-basic.t
diff --git a/t/002-methods.t b/t/02-methods.t
index 03b8101..03b8101 100644
--- a/t/002-methods.t
+++ b/t/02-methods.t
diff --git a/t/003-attrs.t b/t/03-attrs.t
index 6b25849..6b25849 100644
--- a/t/003-attrs.t
+++ b/t/03-attrs.t
diff --git a/t/004-multi-level.t b/t/04-multi-level.t
index 4cd0465..4cd0465 100644
--- a/t/004-multi-level.t
+++ b/t/04-multi-level.t
diff --git a/t/005-moose.t b/t/05-moose.t
index 33a14b1..33a14b1 100644
--- a/t/005-moose.t
+++ b/t/05-moose.t
diff --git a/t/006-disable.t b/t/06-disable.t
index 6d652ab..6d652ab 100644
--- a/t/006-disable.t
+++ b/t/06-disable.t
diff --git a/t/010-immutable.t b/t/10-immutable.t
index 36430eb..36430eb 100644
--- a/t/010-immutable.t
+++ b/t/10-immutable.t
diff --git a/t/020-BUILD.t b/t/20-BUILD.t
index 81de930..81de930 100644
--- a/t/020-BUILD.t
+++ b/t/20-BUILD.t
diff --git a/t/021-BUILDARGS.t b/t/21-BUILDARGS.t
index d6aa973..d6aa973 100644
--- a/t/021-BUILDARGS.t
+++ b/t/21-BUILDARGS.t
diff --git a/t/022-replaced-constructor.t b/t/22-replaced-constructor.t
index c7b2e44..c7b2e44 100644
--- a/t/022-replaced-constructor.t
+++ b/t/22-replaced-constructor.t
diff --git a/t/023-FOREIGNBUILDARGS.t b/t/23-FOREIGNBUILDARGS.t
index 43529dd..43529dd 100644
--- a/t/023-FOREIGNBUILDARGS.t
+++ b/t/23-FOREIGNBUILDARGS.t
diff --git a/t/024-nonmoose-moose-nonmoose.t b/t/24-nonmoose-moose-nonmoose.t
index faa6f6f..faa6f6f 100644
--- a/t/024-nonmoose-moose-nonmoose.t
+++ b/t/24-nonmoose-moose-nonmoose.t
diff --git a/t/025-constructor-method-calls.t b/t/25-constructor-method-calls.t
index 7806b44..7806b44 100644
--- a/t/025-constructor-method-calls.t
+++ b/t/25-constructor-method-calls.t
diff --git a/t/030-only-metaclass-trait.t b/t/30-only-metaclass-trait.t
index 07be5d8..07be5d8 100644
--- a/t/030-only-metaclass-trait.t
+++ b/t/30-only-metaclass-trait.t
diff --git a/t/031-moose-exporter.t b/t/31-moose-exporter.t
index 8fbfbae..8fbfbae 100644
--- a/t/031-moose-exporter.t
+++ b/t/31-moose-exporter.t
diff --git a/t/032-moosex-insideout.t b/t/32-moosex-insideout.t
index 128c437..128c437 100644
--- a/t/032-moosex-insideout.t
+++ b/t/32-moosex-insideout.t
diff --git a/t/033-moosex-globref.t b/t/33-moosex-globref.t
index be8c26b..be8c26b 100644
--- a/t/033-moosex-globref.t
+++ b/t/33-moosex-globref.t
diff --git a/t/040-destructor.t b/t/40-destructor.t
index f2c88be..f2c88be 100644
--- a/t/040-destructor.t
+++ b/t/40-destructor.t
diff --git a/t/100-buggy-constructor-inlining.t b/t/50-buggy-constructor-inlining.t
index 591fae0..591fae0 100644
--- a/t/100-buggy-constructor-inlining.t
+++ b/t/50-buggy-constructor-inlining.t
diff --git a/t/101-buggy-constructors.t b/t/51-buggy-constructors.t
index 066498d..066498d 100644
--- a/t/101-buggy-constructors.t
+++ b/t/51-buggy-constructors.t