test public directly

This commit is contained in:
Bel LaPointe
2024-02-20 08:10:03 -07:00
parent 324d4f430e
commit 9686d1c7dd

View File

@@ -41,3 +41,11 @@ func TestRunHTTP(t *testing.T) {
}
})
}
func TestPublic(t *testing.T) {
f, err := public.Open("index.html")
if err != nil {
t.Fatal(err)
}
defer f.Close()
}