2009-02-04 05:17:24 -05:00
|
|
|
USING: http http.server math sequences continuations tools.test
|
|
|
|
io.encodings.utf8 io.encodings.binary accessors ;
|
2008-06-04 20:54:05 -04:00
|
|
|
IN: http.server.tests
|
|
|
|
|
|
|
|
[ t ] [ [ \ + first ] [ <500> ] recover response? ] unit-test
|
2009-01-31 21:54:49 -05:00
|
|
|
|
|
|
|
\ make-http-error must-infer
|
2009-02-04 05:17:24 -05:00
|
|
|
|
|
|
|
[ "text/plain; charset=UTF-8" ] [
|
|
|
|
<response>
|
|
|
|
"text/plain" >>content-type
|
|
|
|
utf8 >>content-charset
|
|
|
|
unparse-content-type
|
|
|
|
] unit-test
|
|
|
|
|
|
|
|
[ "text/xml" ] [
|
|
|
|
<response>
|
|
|
|
"text/xml" >>content-type
|
|
|
|
binary >>content-charset
|
|
|
|
unparse-content-type
|
|
|
|
] unit-test
|