Test parent of ArrayRef|HashRef
Dave Rolsky [Sat, 17 Sep 2011 14:38:11 +0000 (09:38 -0500)]
t/type_constraints/union_types.t

index 4fe30d8..9e5385b 100644 (file)
@@ -151,4 +151,10 @@ is(
     '... (ArrayRef | HashRef) cannot accept Numbers'
 );
 
+is(
+    $ArrayRef_or_HashRef->parent,
+    find_type_constraint('Ref'),
+    'parent of ArrayRef|HashRef is Ref'
+);
+
 done_testing;