assertify_proc_macros

Crates.ioassertify_proc_macros
lib.rsassertify_proc_macros
version0.7.1
sourcesrc
created_at2019-12-10 00:52:23.86419
updated_at2024-03-15 07:52:57.368979
descriptionDeprecated: use assert2 for better assertions
homepagehttps://github.com/danielparks/assertify
repositoryhttps://github.com/danielparks/assertify
max_upload_size
id188090
size1,964
Daniel Parks (danielparks)

documentation

README

Deprecated — use assert2

Use assert2 instead of this crate. assertify! can be replaced by the more capable assert2::assert! everywhere, and testify! can implemented with a short macro:

macro_rules! testify {
    ($name:ident, $($test:tt)+) => {
        #[test]
        fn $name() {
            ::assert2::assert!($($test)+);
        }
    };
}
Commit count: 42

cargo fmt