/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/memory/memory_test.go
17 строк
332 B
Nick Craig-Wood
backend: allow wrapping backend tests to run in make quicktest
29 июн 2022, 19:30
29 июн 2022, 19:30
866c873
Код
Авторство
О чём код?
// Test memory filesystem interface package memory import ( "testing" "github.com/rclone/rclone/fstest/fstests" ) // TestIntegration runs integration tests against the remote func TestIntegration(t *testing.T) { fstests.Run(t, &fstests.Opt{ RemoteName: ":memory:", NilObject: (*Object)(nil), QuickTestOK: true, }) }