/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/linkbox/linkbox_test.go
19 строк
448 B
Vitaly
linkbox: fix working with names longer than 8-25 Unicode chars.
24 мар 2024, 15:05
24 мар 2024, 15:05
4258ad7
Код
Авторство
О чём код?
// Test Linkbox filesystem interface package linkbox_test import ( "testing" "github.com/rclone/rclone/backend/linkbox" "github.com/rclone/rclone/fstest/fstests" ) // TestIntegration runs integration tests against the remote func TestIntegration(t *testing.T) { fstests.Run(t, &fstests.Opt{ RemoteName: "TestLinkbox:", NilObject: (*linkbox.Object)(nil), // Linkbox doesn't support leading dots for files SkipLeadingDot: true, }) }