test(tvix/eval): Add proof-of-concept test for Chunk

This is pretty boring at the moment, but mostly serves as a foot in the
door in the direction of writing more tests

Change-Id: Id88eb4ec7e53ebb2d5b5c254c8f45ff750238811
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6637
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Griffin Smith 2022-09-18 12:38:53 -04:00 committed by clbot
parent bb47baf638
commit 221d3b9485
4 changed files with 28 additions and 4 deletions

View file

@ -0,0 +1,8 @@
use codemap::CodeMap;
/// Create a dummy [`codemap::Span`] for use in tests
pub(crate) fn dummy_span() -> codemap::Span {
let mut codemap = CodeMap::new();
let file = codemap.add_file("<dummy>".to_owned(), "<dummy>".to_owned());
file.span
}