bevy_persistence_database 0.1.1

A persistence and database integration solution for the Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_export]
macro_rules! db_matrix_test {
    ($name:ident, |$setup:ident| $body:block) => {
        #[test]
        fn $name() {
            for backend in crate::common::configured_backends() {
                let $setup = || crate::common::setup_backend(backend);
                $body
            }
        }
    };
}