rclone/vendor/github.com/pengsrc/go-shared/utils/context_test.go

14 lines
203 B
Go
Raw Normal View History

2018-06-17 16:59:12 +00:00
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))
}