/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/cloudinary/cloudinary_test.go
23 строки
554 B
yuval-cloudinary
cloudinary: add cloudinary backend - fixes #7989
06 янв 2025, 13:54
06 янв 2025, 13:54
7e4b8e3
Код
Авторство
О чём код?
// Test Cloudinary filesystem interface package cloudinary_test import ( "testing" "github.com/rclone/rclone/backend/cloudinary" "github.com/rclone/rclone/fstest/fstests" ) // TestIntegration runs integration tests against the remote func TestIntegration(t *testing.T) { name := "TestCloudinary" fstests.Run(t, &fstests.Opt{ RemoteName: name + ":", NilObject: (*cloudinary.Object)(nil), SkipInvalidUTF8: true, ExtraConfig: []fstests.ExtraConfigItem{ {Name: name, Key: "eventually_consistent_delay", Value: "7"}, }, }) }