aboutsummaryrefslogtreecommitdiff
path: root/backend/studip/studip_test.go
blob: d851424906454d6b714e35b1500b2d58530aa7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package studip_test

import (
	"testing"

	"github.com/mewsen/rclone-studip-backend-oot/backend/studip"
	"github.com/mewsen/rclone-studip-backend-oot/fstest/fstests"
)

// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
	fstests.Run(t, &fstests.Opt{
		RemoteName: "TestStudIP:rclone",
		NilObject:  (*studip.Object)(nil),
	})
}