[][src]Attribute Macro smol_potat_derive::test

#[test]

Enables an async test function.

Examples

This example is not tested
#[smol_potat::test]
async fn my_test() -> std::io::Result<()> {
    assert_eq!(2 * 2, 4);
    Ok(())
}