mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
14 lines
224 B
Go
14 lines
224 B
Go
package context
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGetString(t *testing.T) {
|
|
t.Run("basic test", func(t *testing.T) {
|
|
assert.Equal(t, "context value: Body", BodyCtxKey.String())
|
|
})
|
|
}
|