summaryrefslogtreecommitdiff
path: root/internal/links/fetch_test.go
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-10 21:56:24 -0400
committerdemo <demo@antix1>2026-05-10 21:56:24 -0400
commit916e778dfccc2aa5ce95056b97e11f134bc941f7 (patch)
treee3e7036a4a727f3231d395cc74be917cac0f5b8c /internal/links/fetch_test.go
parent79577b9024dea082c9cc8380997a224e3934df27 (diff)
refactor: move 'fetch' to its own package
Diffstat (limited to 'internal/links/fetch_test.go')
-rw-r--r--internal/links/fetch_test.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/internal/links/fetch_test.go b/internal/links/fetch_test.go
deleted file mode 100644
index 5d873a6..0000000
--- a/internal/links/fetch_test.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package links
-
-import "testing"
-
-func TestFetch(t *testing.T) {
- _, err := fetch("http://example.com", 2)
- if err != nil {
- t.Error(err)
- }
-}