stuart_core 0.2.3

A Blazingly-Fast Static Site Generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
macro_rules! define_testcases {
    ($($name:ident),*) => {
        $(
            #[test]
            fn $name() {
                let testcase = Testcase::new(stringify!($name));
                testcase.run();
            }
        )*
    };
}