rmv-bevy-testing-tools 0.10.2

Write simple tests for bevy systems, using rstest, insta, and speculoos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::time::Duration;

use rmv_bevy_testing_tools::prelude::*;
use rstest::rstest;

#[rstest]
#[async_std::test]
#[timeout(Duration::from_millis(10))]
async fn all_things_are_accessible(#[from(default_test_app)] mut app: TestApp) {
    app.update();
}