diff options
Diffstat (limited to '')
-rw-r--r-- | modules/lfs/client_test.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/lfs/client_test.go b/modules/lfs/client_test.go new file mode 100644 index 0000000..a136930 --- /dev/null +++ b/modules/lfs/client_test.go @@ -0,0 +1,21 @@ +// Copyright 2021 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package lfs + +import ( + "net/url" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestNewClient(t *testing.T) { + u, _ := url.Parse("file:///test") + c := NewClient(u, nil) + assert.IsType(t, &FilesystemClient{}, c) + + u, _ = url.Parse("https://test.com/lfs") + c = NewClient(u, nil) + assert.IsType(t, &HTTPClient{}, c) +} |