0.1.0-0-pre.8

This commit is contained in:
2026-09-16 09:39:53 +02:00
parent 431665992c
commit 00808ea5a6
21 changed files with 410 additions and 30 deletions

View File

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