Move http-client tests from httpd to http-client

slava 2006-11-30 22:24:14 +00:00
parent ea2a60df7e
commit 5bfd845b04
4 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,5 @@
! Copyright (C) 2005 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
REQUIRES: libs/http ;
IN: http-client
USING: errors hashtables http kernel math namespaces parser
sequences io strings ;
@ -67,5 +65,3 @@ DEFER: http-get
parse-url over parse-host <client> [
post-request flush read-response stdio get contents
] with-stream ;
PROVIDE: libs/http-client ;

View File

@ -0,0 +1,5 @@
REQUIRES: libs/http ;
PROVIDE: libs/http-client
{ +files+ { "http-client.factor" } }
{ +tests+ { "test.factor" } } ;

View File

@ -18,7 +18,6 @@ PROVIDE: libs/httpd
} }
{ +tests+ {
"test/html.factor"
"test/http-client.factor"
"test/httpd.factor"
"test/url-encoding.factor"
} } ;