aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/studip/studip_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/backend/studip/studip_test.go b/backend/studip/studip_test.go
new file mode 100644
index 0000000..d851424
--- /dev/null
+++ b/backend/studip/studip_test.go
@@ -0,0 +1,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),
+ })
+}