Documentation ¶ Index ¶ type GoModule func Init(path string) (GoModule, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type GoModule ¶ type GoModule struct { Name string Root string CallingDir string } GoModule represents the current execution context in Gremlins. Name is the module name of the Go module being tested by Gremlins. Root is the root folder of the Go module. CallingDir is the folder in which Gremlins is running. func Init ¶ func Init(path string) (GoModule, error) Init initializes the current module. It finds the module name and the root of the module, then returns a GoModule struct. Source Files ¶ View all Source files gomodule.go Click to show internal directories. Click to hide internal directories.