0.1.0-0-pre.7

This commit is contained in:
2026-09-16 09:29:19 +02:00
parent fa4e2925bd
commit 98b830da6e
18 changed files with 434 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
// file: crates/apps/game-android-entrypoint/unit_tests/selection.rs
// version: 1
#[test]
fn no_feature_entrypoint_has_failure_status() {
#[cfg(not(any(feature = "reflex", feature = "snake")))]
assert_eq!(crate::run_selected_game(), 2);
}