mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
53292527bb
* Add Mkdir, Rmdir, Purge, Delete, SetModTime, Copy, Move, DirMove * Update file size after upload * Add Open seek * Set private permission for new folder and uploaded file * Add docs * Update List function * Fix UserSessionInfo struct * Fix socket leaks * Don’t close resp.Body in Open method * Get hash when listing files
18 lines
376 B
Go
18 lines
376 B
Go
// Test Opendrive filesystem interface
|
|
package opendrive_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/backend/opendrive"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestOpenDrive:",
|
|
NilObject: (*opendrive.Object)(nil),
|
|
})
|
|
}
|