b64fbd9fc4
This should make it easier to work on sections independantly of one another without creating merge conflicts
15 lines
206 B
Go
15 lines
206 B
Go
package parser
|
|
|
|
import "testing"
|
|
|
|
func TestMeta (test *testing.T) {
|
|
checkTree ("../tests/parser/meta",
|
|
`:arf
|
|
author "Sasha Koshka"
|
|
license "GPLv3"
|
|
require "someModule"
|
|
require "otherModule"
|
|
---
|
|
`, test)
|
|
}
|