cloud-sdk 0.55.0

no_std-first provider-neutral cloud SDK foundations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod dispatch_tests;
mod fingerprint_tests;
mod fixture;
mod separation_tests;
mod state_tests;

#[test]
fn security_tests_cannot_return_early_when_fixture_setup_fails() {
    for source in [
        include_str!("tests/dispatch_tests.rs"),
        include_str!("tests/fingerprint_tests.rs"),
        include_str!("tests/separation_tests.rs"),
        include_str!("tests/state_tests.rs"),
    ] {
        assert!(!source.contains("return;"));
        assert!(!source.contains("return }"));
    }
}