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.
11 lines
208 B
Rust
11 lines
208 B
Rust
9 years ago
|
use mongo_driver::WriteConcern;
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
#[test]
|
||
|
fn test_write_concern() {
|
||
|
let write_concern = WriteConcern::new();
|
||
|
assert!(!write_concern.inner().is_null());
|
||
|
}
|
||
|
}
|