diff options
Diffstat (limited to 'ayafs/src/tests/common')
-rw-r--r-- | ayafs/src/tests/common/mod.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ayafs/src/tests/common/mod.rs b/ayafs/src/tests/common/mod.rs deleted file mode 100644 index 3abfcb4..0000000 --- a/ayafs/src/tests/common/mod.rs +++ /dev/null @@ -1,9 +0,0 @@ -use crate::block_device::memory_disk::MemoryDisk; -use crate::AyaFS; -use std::sync::Arc; - -#[allow(unused)] -pub(crate) fn setup() -> AyaFS { - let mem_disk = Arc::new(MemoryDisk::new(1059715)); - AyaFS::new(mem_disk, 1059715) -} |