Fix test
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Catalyst / Action / REST / Controller / Serialize.pm
index 8e0c051..4056898 100644 (file)
@@ -42,12 +42,6 @@ sub empty : Chained('/') PathPart('serialize') CaptureArgs(0) {
 sub empty_serialized :Chained('empty') Args(0) ActionClass('Serialize') {
 }
 
-# Undef body
-sub empty_not_serialized_undef :Chained('empty') Args(0) ActionClass('Serialize') {
-    my ($self, $c) = @_;
-    $c->res->body(undef);
-}
-
 # Blank body
 sub empty_not_serialized_blank :Chained('empty') Args(0) ActionClass('Serialize') {
     my ($self, $c) = @_;