diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-15T11·52+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-16T13·43+0000 |
commit | d365b092262013e074f0fe800a1955032eaa2fd9 (patch) | |
tree | d5c32fecf48fdcc2ec9697accd2be69c1c977a1a /tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix | |
parent | 1786b4c835cbce619ddae77ffeebe89b24d50c0e (diff) |
feat(tvix/eval): implement builtins.toXML r/5664
Change-Id: I009efc53a8e98f0650ae660c4decd8216e8a06e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7835 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix')
-rw-r--r-- | tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix b/tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix new file mode 100644 index 000000000000..068c97a6c1b3 --- /dev/null +++ b/tvix/eval/src/tests/nix_tests/eval-okay-toxml.nix @@ -0,0 +1,3 @@ +# Make sure the expected XML output is produced; in particular, make sure it +# doesn't contain source location information. +builtins.toXML { a = "s"; } |