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