mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 08:10:50 +00:00
14 lines
193 B
Go
14 lines
193 B
Go
package core
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestCompile(t *testing.T) {
|
|
Convey("has asm", t, func() {
|
|
|
|
So(canCompile(), ShouldEqual, true)
|
|
})
|
|
}
|