diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-10T14·34+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-24T18·19+0000 |
commit | c7ba2dec04c9c0bf7558285ed7d434e61ee5e5b5 (patch) | |
tree | c8551d50822d7c8f1cda78505c189f361449b9e3 /tvix/eval/src/value/attrs.rs | |
parent | 08b4d65fbd0ab1f5809aa2f6eb5da819d61299c4 (diff) |
test(tvix/value): add simple attrset construction tests r/4456
These do not yet test nested attribute sets; we need to add some more inspection primitives first. Change-Id: Icfc99bf17c73ebefc0d882a84f0ca73ec688a54d Reviewed-on: https://cl.tvl.fyi/c/depot/+/6110 Reviewed-by: eta <tvl@eta.st> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/value/attrs.rs')
-rw-r--r-- | tvix/eval/src/value/attrs.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/value/attrs.rs b/tvix/eval/src/value/attrs.rs index 209f97778c60..75ade6a89a9f 100644 --- a/tvix/eval/src/value/attrs.rs +++ b/tvix/eval/src/value/attrs.rs @@ -14,6 +14,9 @@ use crate::errors::{Error, EvalResult}; use super::string::NixString; use super::Value; +#[cfg(test)] +mod tests; + #[derive(Clone, Debug)] pub enum NixAttrs { Empty, |