diff options
author | Griffin Smith <root@gws.fyi> | 2022-09-18T17·22-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-09-18T17·57+0000 |
commit | c7faba0c8ee0eea6b20540569ecbd99eb76fedfa (patch) | |
tree | 1fa389f6e113f684155b8211a85a363a3960d649 /tvix/eval/src | |
parent | 96d869923a13eab14d2bb111500a59f775967d9a (diff) |
test(tvix/eval): Add tests for the Eq laws of Value r/4905
Only running 20 cases for now, since Value can get quite big if you let it run for a while. Change-Id: I09ef19da22c789c4869793836c98937c44595340 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6648 Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/eval/src')
-rw-r--r-- | tvix/eval/src/value/mod.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index 85abbcd3eece..594c1fd4735c 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -332,3 +332,19 @@ fn type_error(expected: &'static str, actual: &Value) -> ErrorKind { actual: actual.type_of(), } } + +#[cfg(test)] +mod tests { + use crate::properties::eq_laws; + use proptest::prelude::ProptestConfig; + + use super::*; + + eq_laws!( + Value, + ProptestConfig { + cases: 20, + ..Default::default() + } + ); +} |