Files
games/crates/apps/game-android-entrypoint/unit_tests/selection.rs
2026-09-16 09:29:19 +02:00

9 lines
249 B
Rust

// 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);
}