ds323x-rs/tests/ds3232.rs

11 lines
237 B
Rust
Raw Normal View History

2018-10-28 10:52:07 +00:00
extern crate embedded_hal_mock as hal;
extern crate ds323x;
use ds323x::Ds323x;
#[test]
fn can_create_and_destroy() {
let dev = Ds323x::new_ds3232(hal::i2c::Mock::new(&[]));
let mut i2c = dev.destroy_ds3232();
i2c.done();
}