aboutsummaryrefslogtreecommitdiff
path: root/brokenlinks/worker_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'brokenlinks/worker_test.go')
-rw-r--r--brokenlinks/worker_test.go44
1 files changed, 0 insertions, 44 deletions
diff --git a/brokenlinks/worker_test.go b/brokenlinks/worker_test.go
index 122221e..a125092 100644
--- a/brokenlinks/worker_test.go
+++ b/brokenlinks/worker_test.go
@@ -2,47 +2,3 @@
// SPDX-FileCopyrightText: 2026 M. Shulhan <ms@kilabit.info>
package brokenlinks
-
-import (
- "net/url"
- "testing"
-
- "git.sr.ht/~shulhan/pakakeh.go/lib/test"
-)
-
-func TestGenURLRelative(t *testing.T) {
- listCase := []struct {
- parentURL string
- relPath string
- expURL string
- }{{
- parentURL: `https://domain/a/b/`,
- relPath: `c`,
- expURL: `https://domain/a/b/c`,
- }, {
- parentURL: `https://domain/a/b`,
- relPath: `c`,
- expURL: `https://domain/a/b/c`,
- }, {
- parentURL: `https://domain/a/b/page.html`,
- relPath: `c`,
- expURL: `https://domain/a/b/c`,
- }, {
- parentURL: `https://domain/a/b/page.htm`,
- relPath: `c`,
- expURL: `https://domain/a/b/c`,
- }, {
- parentURL: `https://domain/a/b/page.HTML`,
- relPath: `c`,
- expURL: `https://domain/a/b/c`,
- }, {
- parentURL: `https://domain/a/b/page.HTML`,
- relPath: `../c.html`,
- expURL: `https://domain/a/c.html`,
- }}
- for _, tc := range listCase {
- parentURL, _ := url.Parse(tc.parentURL)
- got := genURLRelative(parentURL, tc.relPath)
- test.Assert(t, ``, tc.expURL, got.String())
- }
-}