mirror of https://github.com/Xhofe/alist
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
package op_test
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	_ "github.com/alist-org/alist/v3/drivers"
 | 
						|
	"github.com/alist-org/alist/v3/internal/op"
 | 
						|
)
 | 
						|
 | 
						|
func TestDriverItemsMap(t *testing.T) {
 | 
						|
	itemsMap := op.GetDriverInfoMap()
 | 
						|
	if len(itemsMap) != 0 {
 | 
						|
		t.Logf("driverInfoMap: %v", itemsMap)
 | 
						|
	} else {
 | 
						|
		t.Errorf("expected driverInfoMap not empty, but got empty")
 | 
						|
	}
 | 
						|
}
 |