diff options
author | Florian Klink <flokli@flokli.de> | 2024-03-27T11·11+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-03-28T07·02+0000 |
commit | 07a51c7dc9dd37205368eb0653e23e33cc04406f (patch) | |
tree | b328028d3219579ac3c10b558eefa999d2fed262 /tvix/Cargo.nix | |
parent | 93dc5df957129b48e95c92c5c31bca3da5488208 (diff) |
feat(tvix/store): add rstest-based PathInfoService tests r/7788
This introduces rstest-based tests. We also add fixtures for creating some BlobService / DirectoryService out of thin air. To test a PathInfoService, we don't really care too much about its internal storage - ensuring they work is up to the castore tests. Change-Id: Ia62af076ef9c9fbfcf8b020a781454ad299d972e Reviewed-on: https://cl.tvl.fyi/c/depot/+/11272 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 001b63d526fb..e6920342d735 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -12989,6 +12989,14 @@ rec { ]; devDependencies = [ { + name = "rstest"; + packageId = "rstest"; + } + { + name = "rstest_reuse"; + packageId = "rstest_reuse"; + } + { name = "tempfile"; packageId = "tempfile"; } |