underscore/examples/pipe_test.go
Ruidy f6af583408
Pipe (#26)
* rename to pipe

* add security scan

* use var in Makefile
2022-03-31 17:37:02 +02:00

11 lines
153 B
Go

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