featurebase/core/core_test.go
2014-08-08 19:33:23 +00:00

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)
})
}