b64fbd9fc4
This should make it easier to work on sections independantly of one another without creating merge conflicts
22 lines
287 B
Go
22 lines
287 B
Go
package parser
|
|
|
|
import "testing"
|
|
|
|
func TestFace (test *testing.T) {
|
|
checkTree ("../tests/parser/face",
|
|
`:arf
|
|
---
|
|
face ro Destroyer:Face
|
|
destroy
|
|
face ro ReadWriter:Face
|
|
read
|
|
> into:{Byte ..}
|
|
< read:Int
|
|
< err:Error
|
|
write
|
|
> data:{Byte ..}
|
|
< wrote:Int
|
|
< err:Error
|
|
`, test)
|
|
}
|