diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-05-01 07:56:25 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-05-01 07:56:25 -0600 |
commit | 9a2da81b11ad0064cca24ce7974827d032309369 (patch) | |
tree | 4313224dc089208423e78bffc3ec50833e35bcea /contrib/fs/dir_test.go | |
parent | 21e2758145d100d74013060f7090d84679cae683 (diff) |
name change gus -> sliderule
Diffstat (limited to 'contrib/fs/dir_test.go')
-rw-r--r-- | contrib/fs/dir_test.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/fs/dir_test.go b/contrib/fs/dir_test.go index 9c6770d..6b6f60f 100644 --- a/contrib/fs/dir_test.go +++ b/contrib/fs/dir_test.go @@ -10,9 +10,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "tildegit.org/tjp/gus" - "tildegit.org/tjp/gus/contrib/fs" - "tildegit.org/tjp/gus/gemini" + sr "tildegit.org/tjp/sliderule" + "tildegit.org/tjp/sliderule/contrib/fs" + "tildegit.org/tjp/sliderule/gemini" ) func TestDirectoryDefault(t *testing.T) { @@ -20,7 +20,7 @@ func TestDirectoryDefault(t *testing.T) { tests := []struct { url string - status gus.Status + status sr.Status meta string body string }{ @@ -46,7 +46,7 @@ func TestDirectoryDefault(t *testing.T) { u, err := url.Parse(test.url) require.Nil(t, err) - request := &gus.Request{URL: u} + request := &sr.Request{URL: u} response := handler.Handle(context.Background(), request) if response == nil { @@ -73,7 +73,7 @@ func TestDirectoryListing(t *testing.T) { tests := []struct { url string - status gus.Status + status sr.Status meta string body string }{ @@ -107,7 +107,7 @@ func TestDirectoryListing(t *testing.T) { u, err := url.Parse(test.url) require.Nil(t, err) - request := &gus.Request{URL: u} + request := &sr.Request{URL: u} response := handler.Handle(context.Background(), request) if response == nil { |