test public directly

main
Bel LaPointe 2024-02-20 08:10:03 -07:00
parent 324d4f430e
commit 9686d1c7dd
1 changed files with 8 additions and 0 deletions

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()
}