complete re-organization of the test suite
[gitmo/Moose.git] / t / 040_type_constraints / 003_util_std_type_constraints.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 269;
7 use Test::Exception;
8
9 use Scalar::Util ();
10
11 BEGIN {
12     use_ok('Moose::Util::TypeConstraints');           
13 }
14
15 my $SCALAR_REF = \(my $var);
16
17 no warnings 'once'; # << I *hates* that warning ...
18 my $GLOB_REF   = \*GLOB_REF;
19
20 my $fh;
21 open($fh, '<', $0) || die "Could not open $0 for the test";
22
23 Moose::Util::TypeConstraints->export_type_contstraints_as_functions();
24
25 ok(defined Any(0),               '... Any accepts anything');
26 ok(defined Any(100),             '... Any accepts anything');
27 ok(defined Any(''),              '... Any accepts anything');
28 ok(defined Any('Foo'),           '... Any accepts anything');
29 ok(defined Any([]),              '... Any accepts anything');
30 ok(defined Any({}),              '... Any accepts anything');
31 ok(defined Any(sub {}),          '... Any accepts anything');
32 ok(defined Any($SCALAR_REF),     '... Any accepts anything');
33 ok(defined Any($GLOB_REF),       '... Any accepts anything');
34 ok(defined Any($fh),             '... Any accepts anything');
35 ok(defined Any(qr/../),          '... Any accepts anything');
36 ok(defined Any(bless {}, 'Foo'), '... Any accepts anything');
37 ok(defined Any(undef),           '... Any accepts anything');
38
39 ok(defined Item(0),               '... Item is the base type, so accepts anything');
40 ok(defined Item(100),             '... Item is the base type, so accepts anything');
41 ok(defined Item(''),              '... Item is the base type, so accepts anything');
42 ok(defined Item('Foo'),           '... Item is the base type, so accepts anything');
43 ok(defined Item([]),              '... Item is the base type, so accepts anything');
44 ok(defined Item({}),              '... Item is the base type, so accepts anything');
45 ok(defined Item(sub {}),          '... Item is the base type, so accepts anything');
46 ok(defined Item($SCALAR_REF),     '... Item is the base type, so accepts anything');
47 ok(defined Item($GLOB_REF),       '... Item is the base type, so accepts anything');
48 ok(defined Item($fh),             '... Item is the base type, so accepts anything');
49 ok(defined Item(qr/../),          '... Item is the base type, so accepts anything');
50 ok(defined Item(bless {}, 'Foo'), '... Item is the base type, so accepts anything');
51 ok(defined Item(undef),           '... Item is the base type, so accepts anything');
52
53 ok(defined Defined(0),               '... Defined accepts anything which is defined');
54 ok(defined Defined(100),             '... Defined accepts anything which is defined');
55 ok(defined Defined(''),              '... Defined accepts anything which is defined');
56 ok(defined Defined('Foo'),           '... Defined accepts anything which is defined');
57 ok(defined Defined([]),              '... Defined accepts anything which is defined');
58 ok(defined Defined({}),              '... Defined accepts anything which is defined');
59 ok(defined Defined(sub {}),          '... Defined accepts anything which is defined');
60 ok(defined Defined($SCALAR_REF),     '... Defined accepts anything which is defined');
61 ok(defined Defined($GLOB_REF),       '... Defined accepts anything which is defined');
62 ok(defined Defined($fh),             '... Defined accepts anything which is defined');
63 ok(defined Defined(qr/../),          '... Defined accepts anything which is defined');
64 ok(defined Defined(bless {}, 'Foo'), '... Defined accepts anything which is defined');
65 ok(!defined Defined(undef),          '... Defined accepts anything which is defined');
66
67 ok(!defined Undef(0),               '... Undef accepts anything which is not defined');
68 ok(!defined Undef(100),             '... Undef accepts anything which is not defined');
69 ok(!defined Undef(''),              '... Undef accepts anything which is not defined');
70 ok(!defined Undef('Foo'),           '... Undef accepts anything which is not defined');
71 ok(!defined Undef([]),              '... Undef accepts anything which is not defined');
72 ok(!defined Undef({}),              '... Undef accepts anything which is not defined');
73 ok(!defined Undef(sub {}),          '... Undef accepts anything which is not defined');
74 ok(!defined Undef($SCALAR_REF),     '... Undef accepts anything which is not defined');
75 ok(!defined Undef($GLOB_REF),       '... Undef accepts anything which is not defined');
76 ok(!defined Undef($fh),             '... Undef accepts anything which is not defined');
77 ok(!defined Undef(qr/../),          '... Undef accepts anything which is not defined');
78 ok(!defined Undef(bless {}, 'Foo'), '... Undef accepts anything which is not defined');
79 ok(defined Undef(undef),            '... Undef accepts anything which is not defined');
80
81 ok(defined Bool(0),                 '... Bool rejects anything which is not a 1 or 0 or "" or undef');
82 ok(defined Bool(1),                 '... Bool rejects anything which is not a 1 or 0 or "" or undef');
83 ok(!defined Bool(100),              '... Bool rejects anything which is not a 1 or 0 or "" or undef');
84 ok(defined Bool(''),                '... Bool rejects anything which is not a 1 or 0 or "" or undef');
85 ok(!defined Bool('Foo'),            '... Bool rejects anything which is not a 1 or 0 or "" or undef');
86 ok(!defined Bool([]),               '... Bool rejects anything which is not a 1 or 0 or "" or undef');
87 ok(!defined Bool({}),               '... Bool rejects anything which is not a 1 or 0 or "" or undef');
88 ok(!defined Bool(sub {}),           '... Bool rejects anything which is not a 1 or 0 or "" or undef');
89 ok(!defined Bool($SCALAR_REF),      '... Bool rejects anything which is not a 1 or 0 or "" or undef');
90 ok(!defined Bool($GLOB_REF),        '... Bool rejects anything which is not a 1 or 0 or "" or undef');
91 ok(!defined Bool($fh),              '... Bool rejects anything which is not a 1 or 0 or "" or undef');
92 ok(!defined Bool(qr/../),           '... Bool rejects anything which is not a 1 or 0 or "" or undef');
93 ok(!defined Bool(bless {}, 'Foo'),  '... Bool rejects anything which is not a 1 or 0 or "" or undef');
94 ok(defined Bool(undef),             '... Bool rejects anything which is not a 1 or 0 or "" or undef');
95
96 ok(defined Value(0),                 '... Value accepts anything which is not a Ref');
97 ok(defined Value(100),               '... Value accepts anything which is not a Ref');
98 ok(defined Value(''),                '... Value accepts anything which is not a Ref');
99 ok(defined Value('Foo'),             '... Value accepts anything which is not a Ref');
100 ok(!defined Value([]),               '... Value rejects anything which is not a Value');
101 ok(!defined Value({}),               '... Value rejects anything which is not a Value');
102 ok(!defined Value(sub {}),           '... Value rejects anything which is not a Value');
103 ok(!defined Value($SCALAR_REF),      '... Value rejects anything which is not a Value');
104 ok(!defined Value($GLOB_REF),        '... Value rejects anything which is not a Value');
105 ok(!defined Value($fh),              '... Value rejects anything which is not a Value');
106 ok(!defined Value(qr/../),           '... Value rejects anything which is not a Value');
107 ok(!defined Value(bless {}, 'Foo'),  '... Value rejects anything which is not a Value');
108 ok(!defined Value(undef),            '... Value rejects anything which is not a Value');
109
110 ok(!defined Ref(0),               '... Ref accepts anything which is not a Value');
111 ok(!defined Ref(100),             '... Ref accepts anything which is not a Value');
112 ok(!defined Ref(''),              '... Ref accepts anything which is not a Value');
113 ok(!defined Ref('Foo'),           '... Ref accepts anything which is not a Value');
114 ok(defined Ref([]),               '... Ref rejects anything which is not a Ref');
115 ok(defined Ref({}),               '... Ref rejects anything which is not a Ref');
116 ok(defined Ref(sub {}),           '... Ref rejects anything which is not a Ref');
117 ok(defined Ref($SCALAR_REF),      '... Ref rejects anything which is not a Ref');
118 ok(defined Ref($GLOB_REF),        '... Ref rejects anything which is not a Ref');
119 ok(defined Ref($fh),              '... Ref rejects anything which is not a Ref');
120 ok(defined Ref(qr/../),           '... Ref rejects anything which is not a Ref');
121 ok(defined Ref(bless {}, 'Foo'),  '... Ref rejects anything which is not a Ref');
122 ok(!defined Ref(undef),           '... Ref rejects anything which is not a Ref');
123
124 ok(defined Int(0),                 '... Int accepts anything which is an Int');
125 ok(defined Int(100),               '... Int accepts anything which is an Int');
126 ok(!defined Int(0.5),              '... Int accepts anything which is not a Int');
127 ok(!defined Int(100.01),           '... Int accepts anything which is not a Int');
128 ok(!defined Int(''),               '... Int rejects anything which is not a Int');
129 ok(!defined Int('Foo'),            '... Int rejects anything which is not a Int');
130 ok(!defined Int([]),               '... Int rejects anything which is not a Int');
131 ok(!defined Int({}),               '... Int rejects anything which is not a Int');
132 ok(!defined Int(sub {}),           '... Int rejects anything which is not a Int');
133 ok(!defined Int($SCALAR_REF),      '... Int rejects anything which is not a Int');
134 ok(!defined Int($GLOB_REF),        '... Int rejects anything which is not a Int');
135 ok(!defined Int($fh),              '... Int rejects anything which is not a Int');
136 ok(!defined Int(qr/../),           '... Int rejects anything which is not a Int');
137 ok(!defined Int(bless {}, 'Foo'),  '... Int rejects anything which is not a Int');
138 ok(!defined Int(undef),            '... Int rejects anything which is not a Int');
139
140 ok(defined Num(0),                 '... Num accepts anything which is an Num');
141 ok(defined Num(100),               '... Num accepts anything which is an Num');
142 ok(defined Num(0.5),               '... Num accepts anything which is an Num');
143 ok(defined Num(100.01),            '... Num accepts anything which is an Num');
144 ok(!defined Num(''),               '... Num rejects anything which is not a Num');
145 ok(!defined Num('Foo'),            '... Num rejects anything which is not a Num');
146 ok(!defined Num([]),               '... Num rejects anything which is not a Num');
147 ok(!defined Num({}),               '... Num rejects anything which is not a Num');
148 ok(!defined Num(sub {}),           '... Num rejects anything which is not a Num');
149 ok(!defined Num($SCALAR_REF),      '... Num rejects anything which is not a Num');
150 ok(!defined Num($GLOB_REF),        '... Num rejects anything which is not a Num');
151 ok(!defined Num($fh),              '... Num rejects anything which is not a Num');
152 ok(!defined Num(qr/../),           '... Num rejects anything which is not a Num');
153 ok(!defined Num(bless {}, 'Foo'),  '... Num rejects anything which is not a Num');
154 ok(!defined Num(undef),            '... Num rejects anything which is not a Num');
155
156 ok(defined Str(0),                 '... Str accepts anything which is a Str');
157 ok(defined Str(100),               '... Str accepts anything which is a Str');
158 ok(defined Str(''),                '... Str accepts anything which is a Str');
159 ok(defined Str('Foo'),             '... Str accepts anything which is a Str');
160 ok(!defined Str([]),               '... Str rejects anything which is not a Str');
161 ok(!defined Str({}),               '... Str rejects anything which is not a Str');
162 ok(!defined Str(sub {}),           '... Str rejects anything which is not a Str');
163 ok(!defined Str($SCALAR_REF),      '... Str rejects anything which is not a Str');
164 ok(!defined Str($fh),              '... Str rejects anything which is not a Str');
165 ok(!defined Str($GLOB_REF),        '... Str rejects anything which is not a Str');
166 ok(!defined Str(qr/../),           '... Str rejects anything which is not a Str');
167 ok(!defined Str(bless {}, 'Foo'),  '... Str rejects anything which is not a Str');
168 ok(!defined Str(undef),            '... Str rejects anything which is not a Str');
169
170 ok(!defined ScalarRef(0),                '... ScalarRef rejects anything which is not a ScalarRef');
171 ok(!defined ScalarRef(100),              '... ScalarRef rejects anything which is not a ScalarRef');
172 ok(!defined ScalarRef(''),               '... ScalarRef rejects anything which is not a ScalarRef');
173 ok(!defined ScalarRef('Foo'),            '... ScalarRef rejects anything which is not a ScalarRef');
174 ok(!defined ScalarRef([]),               '... ScalarRef rejects anything which is not a ScalarRef');
175 ok(!defined ScalarRef({}),               '... ScalarRef rejects anything which is not a ScalarRef');
176 ok(!defined ScalarRef(sub {}),           '... ScalarRef rejects anything which is not a ScalarRef');
177 ok(defined ScalarRef($SCALAR_REF),       '... ScalarRef accepts anything which is a ScalarRef');
178 ok(!defined ScalarRef($GLOB_REF),        '... ScalarRef rejects anything which is not a ScalarRef');
179 ok(!defined ScalarRef($fh),              '... ScalarRef rejects anything which is not a ScalarRef');
180 ok(!defined ScalarRef(qr/../),           '... ScalarRef rejects anything which is not a ScalarRef');
181 ok(!defined ScalarRef(bless {}, 'Foo'),  '... ScalarRef rejects anything which is not a ScalarRef');
182 ok(!defined ScalarRef(undef),            '... ScalarRef rejects anything which is not a ScalarRef');
183
184 ok(!defined ArrayRef(0),                '... ArrayRef rejects anything which is not a ArrayRef');
185 ok(!defined ArrayRef(100),              '... ArrayRef rejects anything which is not a ArrayRef');
186 ok(!defined ArrayRef(''),               '... ArrayRef rejects anything which is not a ArrayRef');
187 ok(!defined ArrayRef('Foo'),            '... ArrayRef rejects anything which is not a ArrayRef');
188 ok(defined ArrayRef([]),                '... ArrayRef accepts anything which is a ArrayRef');
189 ok(!defined ArrayRef({}),               '... ArrayRef rejects anything which is not a ArrayRef');
190 ok(!defined ArrayRef(sub {}),           '... ArrayRef rejects anything which is not a ArrayRef');
191 ok(!defined ArrayRef($SCALAR_REF),      '... ArrayRef rejects anything which is not a ArrayRef');
192 ok(!defined ArrayRef($GLOB_REF),        '... ArrayRef rejects anything which is not a ArrayRef');
193 ok(!defined ArrayRef($fh),              '... ArrayRef rejects anything which is not a ArrayRef');
194 ok(!defined ArrayRef(qr/../),           '... ArrayRef rejects anything which is not a ArrayRef');
195 ok(!defined ArrayRef(bless {}, 'Foo'),  '... ArrayRef rejects anything which is not a ArrayRef');
196 ok(!defined ArrayRef(undef),            '... ArrayRef rejects anything which is not a ArrayRef');
197
198 ok(!defined HashRef(0),                '... HashRef rejects anything which is not a HashRef');
199 ok(!defined HashRef(100),              '... HashRef rejects anything which is not a HashRef');
200 ok(!defined HashRef(''),               '... HashRef rejects anything which is not a HashRef');
201 ok(!defined HashRef('Foo'),            '... HashRef rejects anything which is not a HashRef');
202 ok(!defined HashRef([]),               '... HashRef rejects anything which is not a HashRef');
203 ok(defined HashRef({}),                '... HashRef accepts anything which is a HashRef');
204 ok(!defined HashRef(sub {}),           '... HashRef rejects anything which is not a HashRef');
205 ok(!defined HashRef($SCALAR_REF),      '... HashRef rejects anything which is not a HashRef');
206 ok(!defined HashRef($GLOB_REF),        '... HashRef rejects anything which is not a HashRef');
207 ok(!defined HashRef($fh),              '... HashRef rejects anything which is not a HashRef');
208 ok(!defined HashRef(qr/../),           '... HashRef rejects anything which is not a HashRef');
209 ok(!defined HashRef(bless {}, 'Foo'),  '... HashRef rejects anything which is not a HashRef');
210 ok(!defined HashRef(undef),            '... HashRef rejects anything which is not a HashRef');
211
212 ok(!defined CodeRef(0),                '... CodeRef rejects anything which is not a CodeRef');
213 ok(!defined CodeRef(100),              '... CodeRef rejects anything which is not a CodeRef');
214 ok(!defined CodeRef(''),               '... CodeRef rejects anything which is not a CodeRef');
215 ok(!defined CodeRef('Foo'),            '... CodeRef rejects anything which is not a CodeRef');
216 ok(!defined CodeRef([]),               '... CodeRef rejects anything which is not a CodeRef');
217 ok(!defined CodeRef({}),               '... CodeRef rejects anything which is not a CodeRef');
218 ok(defined CodeRef(sub {}),            '... CodeRef accepts anything which is a CodeRef');
219 ok(!defined CodeRef($SCALAR_REF),      '... CodeRef rejects anything which is not a CodeRef');
220 ok(!defined CodeRef($GLOB_REF),        '... CodeRef rejects anything which is not a CodeRef');
221 ok(!defined CodeRef($fh),              '... CodeRef rejects anything which is not a CodeRef');
222 ok(!defined CodeRef(qr/../),           '... CodeRef rejects anything which is not a CodeRef');
223 ok(!defined CodeRef(bless {}, 'Foo'),  '... CodeRef rejects anything which is not a CodeRef');
224 ok(!defined CodeRef(undef),            '... CodeRef rejects anything which is not a CodeRef');
225
226 ok(!defined RegexpRef(0),                '... RegexpRef rejects anything which is not a RegexpRef');
227 ok(!defined RegexpRef(100),              '... RegexpRef rejects anything which is not a RegexpRef');
228 ok(!defined RegexpRef(''),               '... RegexpRef rejects anything which is not a RegexpRef');
229 ok(!defined RegexpRef('Foo'),            '... RegexpRef rejects anything which is not a RegexpRef');
230 ok(!defined RegexpRef([]),               '... RegexpRef rejects anything which is not a RegexpRef');
231 ok(!defined RegexpRef({}),               '... RegexpRef rejects anything which is not a RegexpRef');
232 ok(!defined RegexpRef(sub {}),           '... RegexpRef rejects anything which is not a RegexpRef');
233 ok(!defined RegexpRef($SCALAR_REF),      '... RegexpRef rejects anything which is not a RegexpRef');
234 ok(!defined RegexpRef($GLOB_REF),        '... RegexpRef rejects anything which is not a RegexpRef');
235 ok(!defined RegexpRef($fh),              '... RegexpRef rejects anything which is not a RegexpRef');
236 ok(defined RegexpRef(qr/../),            '... RegexpRef accepts anything which is a RegexpRef');
237 ok(!defined RegexpRef(bless {}, 'Foo'),  '... RegexpRef rejects anything which is not a RegexpRef');
238 ok(!defined RegexpRef(undef),            '... RegexpRef rejects anything which is not a RegexpRef');
239
240 ok(!defined GlobRef(0),                '... GlobRef rejects anything which is not a GlobRef');
241 ok(!defined GlobRef(100),              '... GlobRef rejects anything which is not a GlobRef');
242 ok(!defined GlobRef(''),               '... GlobRef rejects anything which is not a GlobRef');
243 ok(!defined GlobRef('Foo'),            '... GlobRef rejects anything which is not a GlobRef');
244 ok(!defined GlobRef([]),               '... GlobRef rejects anything which is not a GlobRef');
245 ok(!defined GlobRef({}),               '... GlobRef rejects anything which is not a GlobRef');
246 ok(!defined GlobRef(sub {}),           '... GlobRef rejects anything which is not a GlobRef');
247 ok(!defined GlobRef($SCALAR_REF),      '... GlobRef rejects anything which is not a GlobRef');
248 ok(defined GlobRef($GLOB_REF),         '... GlobRef accepts anything which is a GlobRef');
249 ok(defined GlobRef($fh),               '... GlobRef accepts anything which is a GlobRef');
250 ok(!defined GlobRef(qr/../),           '... GlobRef rejects anything which is not a GlobRef');
251 ok(!defined GlobRef(bless {}, 'Foo'),  '... GlobRef rejects anything which is not a GlobRef');
252 ok(!defined GlobRef(undef),            '... GlobRef rejects anything which is not a GlobRef');
253
254 ok(!defined FileHandle(0),                '... FileHandle rejects anything which is not a FileHandle');
255 ok(!defined FileHandle(100),              '... FileHandle rejects anything which is not a FileHandle');
256 ok(!defined FileHandle(''),               '... FileHandle rejects anything which is not a FileHandle');
257 ok(!defined FileHandle('Foo'),            '... FileHandle rejects anything which is not a FileHandle');
258 ok(!defined FileHandle([]),               '... FileHandle rejects anything which is not a FileHandle');
259 ok(!defined FileHandle({}),               '... FileHandle rejects anything which is not a FileHandle');
260 ok(!defined FileHandle(sub {}),           '... FileHandle rejects anything which is not a FileHandle');
261 ok(!defined FileHandle($SCALAR_REF),      '... FileHandle rejects anything which is not a FileHandle');
262 ok(!defined FileHandle($GLOB_REF),        '... FileHandle rejects anything which is not a FileHandle');
263 ok(defined FileHandle($fh),               '... FileHandle accepts anything which is a FileHandle');
264 ok(!defined FileHandle(qr/../),           '... FileHandle rejects anything which is not a FileHandle');
265 ok(!defined FileHandle(bless {}, 'Foo'),  '... FileHandle rejects anything which is not a FileHandle');
266 ok(!defined FileHandle(undef),            '... FileHandle rejects anything which is not a FileHandle');
267
268 ok(!defined Object(0),                '... Object rejects anything which is not blessed');
269 ok(!defined Object(100),              '... Object rejects anything which is not blessed');
270 ok(!defined Object(''),               '... Object rejects anything which is not blessed');
271 ok(!defined Object('Foo'),            '... Object rejects anything which is not blessed');
272 ok(!defined Object([]),               '... Object rejects anything which is not blessed');
273 ok(!defined Object({}),               '... Object rejects anything which is not blessed');
274 ok(!defined Object(sub {}),           '... Object rejects anything which is not blessed');
275 ok(!defined Object($SCALAR_REF),      '... Object rejects anything which is not blessed');
276 ok(!defined Object($GLOB_REF),        '... Object rejects anything which is not blessed');
277 ok(!defined Object($fh),              '... Object rejects anything which is not blessed');
278 ok(!defined Object(qr/../),           '... Object rejects anything which is not blessed');
279 ok(defined Object(bless {}, 'Foo'),   '... Object accepts anything which is blessed');
280 ok(!defined Object(undef),             '... Object accepts anything which is blessed');
281
282 {
283     package My::Role;
284     sub does { 'fake' }
285 }
286
287 ok(!defined Role(0),                    '... Role rejects anything which is not a Role');
288 ok(!defined Role(100),                  '... Role rejects anything which is not a Role');
289 ok(!defined Role(''),                   '... Role rejects anything which is not a Role');
290 ok(!defined Role('Foo'),                '... Role rejects anything which is not a Role');
291 ok(!defined Role([]),                   '... Role rejects anything which is not a Role');
292 ok(!defined Role({}),                   '... Role rejects anything which is not a Role');
293 ok(!defined Role(sub {}),               '... Role rejects anything which is not a Role');
294 ok(!defined Role($SCALAR_REF),          '... Role rejects anything which is not a Role');
295 ok(!defined Role($GLOB_REF),            '... Role rejects anything which is not a Role');
296 ok(!defined Role($fh),                  '... Role rejects anything which is not a Role');
297 ok(!defined Role(qr/../),               '... Role rejects anything which is not a Role');
298 ok(!defined Role(bless {}, 'Foo'),      '... Role accepts anything which is not a Role');
299 ok(defined Role(bless {}, 'My::Role'),  '... Role accepts anything which is not a Role');
300 ok(!defined Role(undef),                 '... Role accepts anything which is not a Role');
301
302 ok(!defined ClassName(0),               '... ClassName rejects anything which is not a ClassName');
303 ok(!defined ClassName(100),             '... ClassName rejects anything which is not a ClassName');
304 ok(!defined ClassName(''),              '... ClassName rejects anything which is not a ClassName');
305 ok(!defined ClassName('Baz'),           '... ClassName rejects anything which is not a ClassName');
306 ok(!defined ClassName([]),              '... ClassName rejects anything which is not a ClassName');
307 ok(!defined ClassName({}),              '... ClassName rejects anything which is not a ClassName');
308 ok(!defined ClassName(sub {}),          '... ClassName rejects anything which is not a ClassName');
309 ok(!defined ClassName($SCALAR_REF),     '... ClassName rejects anything which is not a ClassName');
310 ok(!defined ClassName($fh),             '... ClassName rejects anything which is not a ClassName');
311 ok(!defined ClassName($GLOB_REF),       '... ClassName rejects anything which is not a ClassName');
312 ok(!defined ClassName(qr/../),          '... ClassName rejects anything which is not a ClassName');
313 ok(!defined ClassName(bless {}, 'Foo'), '... ClassName rejects anything which is not a ClassName');
314 ok(!defined ClassName(undef),           '... ClassName rejects anything which is not a ClassName');
315 ok(defined ClassName('UNIVERSAL'),      '... ClassName accepts anything which is a ClassName');
316 ok(defined ClassName('Moose::Meta::TypeConstraint'), '... ClassName accepts anything which is a ClassName');
317
318 close($fh) || die "Could not close the filehandle $0 for test";