1// Test Seafile filesystem interface
2package seafile_test
3
4import (
5	"testing"
6
7	"github.com/rclone/rclone/backend/seafile"
8	"github.com/rclone/rclone/fstest/fstests"
9)
10
11// TestIntegration runs integration tests against the remote
12func TestIntegration(t *testing.T) {
13	fstests.Run(t, &fstests.Opt{
14		RemoteName: "TestSeafile:",
15		NilObject:  (*seafile.Object)(nil),
16	})
17}
18