From 4d29a5de5ac5381fe1625443fbdb7dfac9f6738f Mon Sep 17 00:00:00 2001 From: Gareth Pendleton Date: Sun, 14 Sep 2025 11:53:50 +0100 Subject: [PATCH] test: Modified scratch tests --- test/scratch.gleam | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/test/scratch.gleam b/test/scratch.gleam index 69ffeb0..20bcaea 100644 --- a/test/scratch.gleam +++ b/test/scratch.gleam @@ -1,12 +1,20 @@ // import gleam/result -// import gleam/uri as uri2 +import gleam/uri as uri2 + // import splitter // import types.{Uri} import gluri as uri pub fn main() { - uri.parse("http://my_host.com") |> echo + // uri.parse("https://192.255.36.4/") |> echo + // uri.parse( + // "https://github.com/gleam-lang/stdlib/issues/523#issuecomment-3288230480", + // ) + // |> echo + let _ = uri.parse("/abc/def") |> echo + let _ = uri2.parse("/abc/def") |> echo + let _ = uri.parse("/abc/") |> echo Nil }