// Copyright 2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Simple HTTP client and server // XXX This should not be in core struct HttpServer; #[cfg(test)] mod test { use unstable::run_in_bare_thread; #[test] #[ignore] fn smoke_test() { do run_in_bare_thread { } do run_in_bare_thread { } } }