forked from sneak/mfer
12 lines
131 B
Go
12 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBuild(t *testing.T) {
|
|
assert.True(t, true)
|
|
}
|