mirror of
https://github.com/rclone/rclone
synced 2024-11-04 00:27:50 +01:00
2089405e1b
- Fs cache for rc commands - Helper functions for parsing the input - Reshape command for manipulating JSON blobs - Background Job starting, control, query and expiry
24 lines
349 B
Go
24 lines
349 B
Go
package rc
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestWriteJSON(t *testing.T) {
|
|
var buf bytes.Buffer
|
|
err := WriteJSON(&buf, Params{
|
|
"String": "hello",
|
|
"Int": 42,
|
|
})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, `{
|
|
"Int": 42,
|
|
"String": "hello"
|
|
}
|
|
`, buf.String())
|
|
}
|