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/read_prefs.rs

10 lines
190 B
Rust

extern crate mongo_driver;
use mongo_driver::read_prefs::ReadPrefs;
#[test]
fn test_read_prefs() {
let read_prefs = ReadPrefs::default();
assert!(!read_prefs.inner().is_null());
}