From b5bcca8f928cafff36b8a0d04c2c3a771205cb62 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Fri, 24 Apr 2015 17:26:21 +0200 Subject: [PATCH] test: `SEARCH`, `PURGE` and `MKCALENDAR` These methods are defined in `http_parser.h` but not tested. PR-URL: https://github.com/joyent/http-parser/pull/241 Reviewed-By: Fedor Indutny --- test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test.c b/test.c index 31b58b4..7aa3c2a 100644 --- a/test.c +++ b/test.c @@ -3743,6 +3743,7 @@ main (void) "MOVE", "PROPFIND", "PROPPATCH", + "SEARCH", "UNLOCK", "BIND", "REBIND", @@ -3756,6 +3757,8 @@ main (void) "SUBSCRIBE", "UNSUBSCRIBE", "PATCH", + "PURGE", + "MKCALENDAR", 0 }; const char **this_method; for (this_method = all_methods; *this_method; this_method++) {