1// SPDX-FileCopyrightText: 2025 Romain Maneschi <romain@gitroot.dev>
2//
3// SPDX-License-Identifier: EUPL-1.2
4
5package main
6
7import (
8 "testing"
9)
10
11func TestRelativeLink(t *testing.T) {
12 l := relativePath("/doc/main.md", "/")
13 if l != "../" {
14 t.Errorf("l should be ../ but was %s", l)
15 }
16}