diff options
| author | Michael Tews <michael@tews.dev> | 2026-03-06 10:58:19 +0100 |
|---|---|---|
| committer | Michael Tews <michael@tews.dev> | 2026-03-12 15:23:26 +0100 |
| commit | ce94f2d69a5f1aab1fc8fc2947f0a6cfd81bb4d1 (patch) | |
| tree | 4ae72baff8af7a73d46ccd544463aac3f638df39 /backend | |
| parent | a59763b4ff8c5728401232a696dfc8a725cf4e02 (diff) | |
test: adds fstest from rclone
Signed-off-by: Michael Tews <michael@tews.dev>
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/studip/studip_test.go | 16 |
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), + }) +} |
