underscore/examples/chaining_test.go
2022-01-03 11:36:54 -04:00

11 lines
157 B
Go

package examples
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestChainingExample(t *testing.T) {
assert.Equal(t, 120, chaining())
}