You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mongo-rust-driver/tests/write_concern.rs

10 lines
216 B
Rust

extern crate mongo_driver;
use mongo_driver::write_concern::WriteConcern;
#[test]
fn test_default_write_concern() {
let write_concern = WriteConcern::default();
assert!(!write_concern.inner().is_null());
}