Update test generate script, add tests to membackend
This commit is contained in:
parent
e966df3fed
commit
9423767827
6 changed files with 147 additions and 25 deletions
20
backend/test/backend_test.go
Normal file
20
backend/test/backend_test.go
Normal file
|
@ -0,0 +1,20 @@
|
|||
// DO NOT EDIT!
|
||||
// generated at 2016-23-01 17:41:27 +0100 CET
|
||||
package test_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/restic/restic/backend/test"
|
||||
)
|
||||
|
||||
func TestTestBackendCreate(t *testing.T) { test.Create(t) }
|
||||
func TestTestBackendOpen(t *testing.T) { test.Open(t) }
|
||||
func TestTestBackendLocation(t *testing.T) { test.Location(t) }
|
||||
func TestTestBackendConfig(t *testing.T) { test.Config(t) }
|
||||
func TestTestBackendGetReader(t *testing.T) { test.GetReader(t) }
|
||||
func TestTestBackendLoad(t *testing.T) { test.Load(t) }
|
||||
func TestTestBackendWrite(t *testing.T) { test.Write(t) }
|
||||
func TestTestBackendGeneric(t *testing.T) { test.Generic(t) }
|
||||
func TestTestBackendDelete(t *testing.T) { test.Delete(t) }
|
||||
func TestTestBackendCleanup(t *testing.T) { test.Cleanup(t) }
|
Loading…
Add table
Add a link
Reference in a new issue