grillon 0.3.0

Grillon offers an elegant and natural way to approach end-to-end HTTP API testing in Rust.
Documentation
use http::uri::InvalidUri;
use std::error::Error as StdError;
use std::fmt;

/// Short hand for `Result` type.
pub type Result<T> = std::result::Result<T, Error>;

/// Represents the library errors.
#[derive(Debug)]
pub enum Error {
    /// Invalid Uri error.
    UriParseError(InvalidUri),
}

macro_rules! impl_from_error {
    ($f:ty, $e:expr) => {
        impl From<$f> for Error {
            fn from(f: $f) -> Error {
                $e(f)
            }
        }
    };
}

impl_from_error!(InvalidUri, Error::UriParseError);

impl StdError for Error {}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        use crate::error::Error::*;

        match *self {
            UriParseError(ref err) => fmt::Display::fmt(err, f),
        }
    }
}