derive-error 0.0.3

Derive macro for Error using macros 1.1
Documentation
extern crate rspec;
#[macro_use]
extern crate derive_error;

use self::rspec::context::rdescribe;

#[test]
fn error_behaviour() {
    rdescribe("the implementation", |ctx| {
        ctx.it("should be able to derive from unit structs", || {
            #[derive(Debug, Error)]
            pub enum _Error {
                Msg
            }
        });
    });
}