Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TestDriver ¶
type TestDriver struct {
storagedriver.StorageDriver
}
TestDriver is a StorageDriver for testing purposes. The Writer returned by this driver simulates the case where Write operations are buffered. This causes the value returned by Size to lag behind until Close (or Commit, or Cancel) is called.
func New ¶
func New() *TestDriver
New constructs a new StorageDriver for testing purposes. The Writer returned by this driver simulates the case where Write operations are buffered. This causes the value returned by Size to lag behind until Close (or Commit, or Cancel) is called.
func (*TestDriver) Writer ¶
func (td *TestDriver) Writer(ctx context.Context, path string, append bool) (storagedriver.FileWriter, error)
Writer returns a FileWriter which will store the content written to it at the location designated by "path" after the call to Commit.
Click to show internal directories.
Click to hide internal directories.