Fediversity/website/tests.nix

12 lines
231 B
Nix
Raw Normal View History

2024-11-27 11:21:59 +01:00
# 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";
};
}