mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-28 04:51:07 +00:00 
			
		
		
		
	(cherry picked from commit0dd74d09d3) (cherry picked from commit28d2d9b212) (cherry picked from commit3c3db1ff0f)
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			457 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			457 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package storage
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestMinioStorageIterator(t *testing.T) {
 | |
| 	t.Skip("minio not found in Forgejo test yet")
 | |
| 	testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
 | |
| 		Endpoint:        "127.0.0.1:9000",
 | |
| 		AccessKeyID:     "123456",
 | |
| 		SecretAccessKey: "12345678",
 | |
| 		Bucket:          "gitea",
 | |
| 		Location:        "us-east-1",
 | |
| 	})
 | |
| }
 |