Merge pull request #272 from colincross/sandbox_primary_builder
Add Context.SetFs
This commit is contained in:
commit
9999eddc46
1 changed files with 4 additions and 0 deletions
|
@ -889,6 +889,10 @@ func (c *Context) MockFileSystem(files map[string][]byte) {
|
|||
c.fs = pathtools.MockFs(files)
|
||||
}
|
||||
|
||||
func (c *Context) SetFs(fs pathtools.FileSystem) {
|
||||
c.fs = fs
|
||||
}
|
||||
|
||||
// openAndParse opens and parses a single Blueprints file, and returns the results
|
||||
func (c *Context) openAndParse(filename string, scope *parser.Scope, rootDir string,
|
||||
parent *fileParseContext) (file *parser.File,
|
||||
|
|
Loading…
Reference in a new issue