github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/backend/sia/sia_test.go (about) 1 // Test Sia filesystem interface 2 package sia_test 3 4 import ( 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 13 func TestIntegration(t *testing.T) { 14 fstests.Run(t, &fstests.Opt{ 15 RemoteName: "TestSia:", 16 NilObject: (*sia.Object)(nil), 17 }) 18 }