mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
19 lines
410 B
Go
19 lines
410 B
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package storage
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestMinioStorageIterator(t *testing.T) {
|
||
|
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
||
|
Endpoint: "127.0.0.1:9000",
|
||
|
AccessKeyID: "123456",
|
||
|
SecretAccessKey: "12345678",
|
||
|
Bucket: "gitea",
|
||
|
Location: "us-east-1",
|
||
|
})
|
||
|
}
|