deboa 0.1.2

A friendly rest client on top of hyper.
Documentation
//! Test utilities and modules

use ::url::Url;
use http::Uri;

mod cache;
//mod catcher;
mod cookie;
mod form;
mod request;
mod response;
mod url;

const TEST_URL: &str = "https://localhost:8000";

pub(crate) fn test_url() -> Url {
    Url::parse(TEST_URL).unwrap()
}

pub(crate) fn test_uri() -> Uri {
    Uri::from_static(TEST_URL)
}