2014-07-24 21:50:11 +00:00
|
|
|
// Test Drive filesystem interface
|
|
|
|
package drive_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-11 16:05:41 +00:00
|
|
|
"github.com/ncw/rclone/backend/drive"
|
2014-07-24 21:50:11 +00:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
2018-04-07 17:48:11 +00:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestDrive:",
|
|
|
|
NilObject: (*drive.Object)(nil),
|
|
|
|
})
|
2014-07-24 21:50:11 +00:00
|
|
|
}
|