bluepill-knurling-rs/tests/integration.rs
2024-03-13 21:20:52 +00:00

16 lines
302 B
Rust

#![no_std]
#![no_main]
use my_app as _; // memory layout + panic handler
// See https://crates.io/crates/defmt-test/0.3.0 for more documentation (e.g. about the 'state'
// feature)
#[defmt_test::tests]
mod tests {
use defmt::assert;
#[test]
fn it_works() {
assert!(true)
}
}