mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 18:46:47 +00:00
11 lines
153 B
Go
11 lines
153 B
Go
package examples
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPipingExample(t *testing.T) {
|
|
assert.Equal(t, 120, piping())
|
|
}
|