1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Test modules for FeOxDB
#[cfg(test)]
pub mod store;
#[cfg(test)]
pub mod cache_tests;
#[cfg(test)]
pub mod record_tests;
#[cfg(test)]
pub mod free_space_tests;
#[cfg(test)]
pub mod write_buffer_tests;
#[cfg(test)]
pub mod io_tests;
#[cfg(test)]
pub mod metadata_tests;
#[cfg(test)]
pub mod json_patch_tests;
#[cfg(test)]
pub mod hash_tests;
#[cfg(test)]
pub mod stats_tests;
#[cfg(test)]
pub mod allocator_tests;
#[cfg(test)]
pub mod persistence_tests;
#[cfg(test)]
pub mod ttl_tests;