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