forked from Fediversity/Fediversity
12 lines
231 B
Nix
12 lines
231 B
Nix
|
# tests written for running with `nix-unit`
|
||
|
# https://github.com/nix-community/nix-unit
|
||
|
let
|
||
|
inherit (import ./. { }) lib;
|
||
|
in
|
||
|
{
|
||
|
test-relativePath = {
|
||
|
expr = with lib; relativePath "bar" "baz";
|
||
|
expected = "./baz";
|
||
|
};
|
||
|
}
|