mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 17:23:36 +01:00
f9acad82ca
* Add proxy settings and support for migration and webhook * Fix default value * Add newline for example ini * Add lfs proxy support * Fix lint * Follow @zeripath's review * Fix git clone * Fix test * missgin http requests for proxy * use empty Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net>
23 lines
491 B
Go
23 lines
491 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package lfs
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewClient(t *testing.T) {
|
|
u, _ := url.Parse("file:///test")
|
|
c := NewClient(u, true)
|
|
assert.IsType(t, &FilesystemClient{}, c)
|
|
|
|
u, _ = url.Parse("https://test.com/lfs")
|
|
c = NewClient(u, true)
|
|
assert.IsType(t, &HTTPClient{}, c)
|
|
}
|