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

8 lines
162 B
Rust

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