summaryrefslogtreecommitdiff
path: root/test/test_nmount.rs
diff options
context:
space:
mode:
authorCostin-Robert Sin <sin.costinrobert@gmail.com>2022-06-21 15:36:05 +0300
committerCostin-Robert Sin <sin.costinrobert@gmail.com>2022-06-24 00:35:52 +0300
commit3e6cb639f0d9afde57d9cc03526c2e488641231b (patch)
treec882f2947fa5b22e67a58918c45012655b892b30 /test/test_nmount.rs
parent8f08a69c28fad5ee875d69e4c8a1b8eed2203cb4 (diff)
downloadnix-3e6cb639f0d9afde57d9cc03526c2e488641231b.zip
Fix all formating problems to pass CI formating test
Signed-off-by: Costin-Robert Sin <sin.costinrobert@gmail.com>
Diffstat (limited to 'test/test_nmount.rs')
-rw-r--r--test/test_nmount.rs20
1 files changed, 9 insertions, 11 deletions
diff --git a/test/test_nmount.rs b/test/test_nmount.rs
index 4c74ecf6..dec806a5 100644
--- a/test/test_nmount.rs
+++ b/test/test_nmount.rs
@@ -1,13 +1,9 @@
use crate::*;
use nix::{
errno::Errno,
- mount::{MntFlags, Nmount, unmount}
-};
-use std::{
- ffi::CString,
- fs::File,
- path::Path
+ mount::{unmount, MntFlags, Nmount},
};
+use std::{ffi::CString, fs::File, path::Path};
use tempfile::tempdir;
#[test]
@@ -24,14 +20,15 @@ fn ok() {
.str_opt(&fstype, &nullfs)
.str_opt_owned("fspath", mountpoint.path().to_str().unwrap())
.str_opt_owned("target", target.path().to_str().unwrap())
- .nmount(MntFlags::empty()).unwrap();
-
+ .nmount(MntFlags::empty())
+ .unwrap();
+
// Now check that the sentry is visible through the mountpoint
let exists = Path::exists(&mountpoint.path().join("sentry"));
// Cleanup the mountpoint before asserting
unmount(mountpoint.path(), MntFlags::empty()).unwrap();
-
+
assert!(exists);
}
@@ -44,8 +41,9 @@ fn bad_fstype() {
let e = Nmount::new()
.str_opt_owned("fspath", mountpoint.path().to_str().unwrap())
.str_opt_owned("target", target.path().to_str().unwrap())
- .nmount(MntFlags::empty()).unwrap_err();
-
+ .nmount(MntFlags::empty())
+ .unwrap_err();
+
assert_eq!(e.error(), Errno::EINVAL);
assert_eq!(e.errmsg(), Some("Invalid fstype"));
}