diff options
Diffstat (limited to 'cpan/HTTP-Tiny/t/cases/put-02.txt')
-rw-r--r-- | cpan/HTTP-Tiny/t/cases/put-02.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpan/HTTP-Tiny/t/cases/put-02.txt b/cpan/HTTP-Tiny/t/cases/put-02.txt new file mode 100644 index 0000000000..04d267563b --- /dev/null +++ b/cpan/HTTP-Tiny/t/cases/put-02.txt @@ -0,0 +1,24 @@ +url + http://example.com/callback.txt +headers + Content-Type: text/plain + Content-Length: 42 +content_cb + my @content = qq{abcdefghijklmnopqrstuvwxyz1234567890abcdef}; + sub { shift @content } +---------- +PUT /callback.txt HTTP/1.1 +Host: example.com +Connection: close +User-Agent: HTTP-Tiny/VERSION +Content-Type: text/plain +Content-Length: 42 + +abcdefghijklmnopqrstuvwxyz1234567890abcdef + +---------- +HTTP/1.1 201 Created +Date: Thu, 03 Feb 1994 00:00:00 GMT +Location: http://example.com/callback.txt +Content-Length: 0 + |