rclone/vendor/github.com/pengsrc/go-shared/utils/context_test.go
2018-06-17 17:59:12 +01:00

13 lines
203 B
Go

package utils
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestContextKey(t *testing.T) {
var value ContextKey = "Hello world."
assert.Equal(t, "Hello world.", string(value))
}