2015-10-04 21:08:31 +00:00
|
|
|
// Test OneDrive filesystem interface
|
|
|
|
package onedrive_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-11 16:05:41 +00:00
|
|
|
"github.com/ncw/rclone/backend/onedrive"
|
2015-10-04 21:08:31 +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: "TestOneDrive:",
|
|
|
|
NilObject: (*onedrive.Object)(nil),
|
|
|
|
})
|
2015-10-04 21:08:31 +00:00
|
|
|
}
|