Changes since 5.5.1: * Fixed command line parsing for the --only option. * Improved alignment of variable values in Makefiles. * Code cleanup: better abstraction in the tests.
7 lines
191 B
Go
7 lines
191 B
Go
package main
|
|
|
|
import "gopkg.in/check.v1"
|
|
|
|
func (s *Suite) Test_Tree_String(c *check.C) {
|
|
c.Check(NewTree("not", NewTree("empty", "varname")).String(), equals, "(not (empty \"varname\"))")
|
|
}
|