core/command: Add version command instead of ls

This commit is contained in:
Chaitanya Bankanhal 2020-07-15 00:01:41 +05:30 committed by Nick Craig-Wood
parent 5549fd25fc
commit 54fc2821cd
1 changed files with 3 additions and 11 deletions

View File

@ -5,8 +5,6 @@ import (
"runtime"
"testing"
"github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@ -125,17 +123,11 @@ func TestCoreQuit(t *testing.T) {
// core/command: Runs a raw rclone command
func TestCoreCommand(t *testing.T) {
call := Calls.Get("core/command")
r := fstest.NewRun(t)
defer r.Finalise()
in := Params{
"command": "ls",
"opt": map[string]string{
"max-depth": "1",
},
"arg": []string{
r.FremoteName,
},
"command": "version",
"opt": map[string]string{},
"arg": []string{},
}
got, err := call.Fn(context.Background(), in)
require.NoError(t, err)