diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-01-17 15:59:29 -0700 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-01-17 15:59:29 -0700 |
commit | 2ef530daa47b301a40c1ee93cd43b8f36fc68c0b (patch) | |
tree | b9753719f5f0e5312bb5008d40f40247ce14e15a /gemini/request_test.go | |
parent | 30e21f8513d49661cb6e1583d301e34e898d48a9 (diff) |
pull request, response, handlers out of the gemini package
Diffstat (limited to 'gemini/request_test.go')
-rw-r--r-- | gemini/request_test.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gemini/request_test.go b/gemini/request_test.go index c23d54b..1da24f7 100644 --- a/gemini/request_test.go +++ b/gemini/request_test.go @@ -3,7 +3,6 @@ package gemini_test import ( "bytes" "testing" - "net/url" "tildegit.org/tjp/gus/gemini" ) @@ -85,19 +84,3 @@ func TestParseRequest(t *testing.T) { }) } } - -func TestUnescapedQuery(t *testing.T) { - table := []string{ - "foo bar", - } - - for _, test := range table { - t.Run(test, func(t *testing.T) { - u, _ := url.Parse("gemini://domain.com/path?" + url.QueryEscape(test)) - result := gemini.Request{ URL: u }.UnescapedQuery() - if result != test { - t.Errorf("expected %q, got %q", test, result) - } - }) - } -} |