rclone/backend/frostfs/frostfs_test.go
Aleksey Kravchenko d9fbd56598
Some checks failed
/ DCO (pull_request) Successful in 1m48s
/ Builds (pull_request) Successful in 2m39s
/ Vulncheck (pull_request) Failing after 3m22s
/ Lint (pull_request) Successful in 4m29s
[#1] Add frostfs backend
Signed-off-by: Aleksey Kravchenko <al.kravchenko@yadro.com>
2024-12-21 18:13:23 +03:00

16 lines
313 B
Go

package frostfs
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: "TestFrostFS:",
NilObject: (*Object)(nil),
SkipInvalidUTF8: true,
})
}