rclone/backend/frostfs/frostfs_test.go
Aleksey Kravchenko 538ac9c9df
Some checks failed
/ Lint (pull_request) Failing after 1m10s
/ DCO (pull_request) Successful in 1m55s
/ Builds (pull_request) Successful in 2m31s
[#1] Add frostfs backend
Signed-off-by: Aleksey Kravchenko <al.kravchenko@yadro.com>
2024-12-21 17:47:03 +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,
})
}