mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
11 lines
553 B
Bash
Executable file
11 lines
553 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
touch "$TEST_ROOT/foo" -t 202211111111
|
|
# We only check whether 2022-11-1* **:**:** is the last modified date since
|
|
# `lastModified` is transformed into UTC in `builtins.fetchTarball`.
|
|
[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$TEST_ROOT/foo\").lastModifiedDate")" =~ 2022111.* ]]
|
|
|
|
# Check that we can override lastModified for "path:" inputs.
|
|
[[ "$(nix eval --impure --expr "(builtins.fetchTree { type = \"path\"; path = \"$TEST_ROOT/foo\"; lastModified = 123; }).lastModified")" = 123 ]]
|