Files
avo/tests/textflag/attrtest_test.go
Michael McLoughlin 16c602d345 tests/attrtest: move decl to non-test file
Solves the asmdecl error:

  [amd64] AttrTest: function AttrTest missing Go declaration

Updates #24
2019-01-13 11:53:04 -08:00

10 lines
106 B
Go

package textflag
import "testing"
func TestAttributes(t *testing.T) {
if !attrtest() {
t.Fail()
}
}