aboutsummaryrefslogtreecommitdiff
path: root/tests/fetchPath.sh
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2022-03-15 12:55:32 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2022-03-15 12:55:32 +0100
commit975bade7f0adb0d122eabeeca6ad44bf1d1f4366 (patch)
treeb9a8c3ba5de1e1b7abcbd2bb254fec582275bf12 /tests/fetchPath.sh
parent244baff2c7bc287b83377f1ed807a861fc705dac (diff)
Implement simple test for `path`-fetcher setting a correct `lastModifiedDate`
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
Diffstat (limited to 'tests/fetchPath.sh')
-rw-r--r--tests/fetchPath.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/fetchPath.sh b/tests/fetchPath.sh
new file mode 100644
index 000000000..0cfdf68cf
--- /dev/null
+++ b/tests/fetchPath.sh
@@ -0,0 +1,6 @@
+source common.sh
+
+touch foo -t 222211111111
+# We only check whether 2222-11-1* **:**:** is the last modified date since
+# `lastModified` is transformed into UTC in `builtins.fetchTarball`.
+[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$PWD/foo\").lastModifiedDate")" =~ 2222111.* ]]