Files
user-system/internal/repository/gemini_drive_client_test.go

16 lines
292 B
Go
Raw Normal View History

package repository
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestNewGeminiDriveClient(t *testing.T) {
client := NewGeminiDriveClient()
require.NotNil(t, client)
// 返回的是接口类型,只要不为 nil 即可
// 具体功能在 geminicli 包中测试
}