12 lines
134 B
Go
12 lines
134 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFunction(t *testing.T) {
|
|
assert.Equal(t, 1, 1)
|
|
}
|