diff options
Diffstat (limited to 'tvix/store/src/pathinfoservice/mod.rs')
-rw-r--r-- | tvix/store/src/pathinfoservice/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/store/src/pathinfoservice/mod.rs b/tvix/store/src/pathinfoservice/mod.rs index 1f52d20caed7..c334c8dc5631 100644 --- a/tvix/store/src/pathinfoservice/mod.rs +++ b/tvix/store/src/pathinfoservice/mod.rs @@ -7,6 +7,9 @@ mod sled; #[cfg(any(feature = "fuse", feature = "virtiofs"))] mod fs; +#[cfg(test)] +mod tests; + use futures::stream::BoxStream; use tonic::async_trait; use tvix_castore::proto as castorepb; |