rmv-bevy-testing-tools 0.8.0

Write simple tests for bevy systems, using rstest, insta, and speculoos.
Documentation
1
2
3
4
5
6
7
use rmv_bevy_testing_tools::prelude::*;
use rstest::rstest;

#[rstest]
fn all_things_are_accessible(#[from(test_app)] mut app: TestApp) {
    app.update();
}