From 2ef530daa47b301a40c1ee93cd43b8f36fc68c0b Mon Sep 17 00:00:00 2001 From: tjpcc Date: Tue, 17 Jan 2023 15:59:29 -0700 Subject: pull request, response, handlers out of the gemini package --- gemini/request_test.go | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'gemini/request_test.go') 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) - } - }) - } -} -- cgit v1.2.3