Documentation ¶
Index ¶
- type FakeLoader
- func (f FakeLoader) AddDirectory(fullDirPath string, mode os.FileMode) error
- func (f FakeLoader) AddFile(fullFilePath string, content []byte) error
- func (f FakeLoader) Load(location string) ([]byte, error)
- func (f FakeLoader) New(newRoot string) (loader.Loader, error)
- func (f FakeLoader) Root() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FakeLoader ¶
type FakeLoader struct {
// contains filtered or unexported fields
}
FakeLoader encapsulates the delegate Loader and the fake file system.
func NewFakeLoader ¶
func NewFakeLoader(initialDir string) FakeLoader
NewFakeLoader returns a Loader that delegates calls, and encapsulates a fake file system that the Loader reads from. "initialDir" parameter must be an full, absolute directory (trailing slash doesn't matter).
func (FakeLoader) AddDirectory ¶
func (f FakeLoader) AddDirectory(fullDirPath string, mode os.FileMode) error
Adds a fake directory to the file system.
func (FakeLoader) AddFile ¶
func (f FakeLoader) AddFile(fullFilePath string, content []byte) error
Adds a fake file to the file system.
func (FakeLoader) Root ¶
func (f FakeLoader) Root() string
Click to show internal directories.
Click to hide internal directories.