mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
16 lines
314 B
Go
16 lines
314 B
Go
package datastore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/fnproject/fn/api/datastore/datastoretest"
|
|
"github.com/fnproject/fn/api/models"
|
|
)
|
|
|
|
func TestDatastore(t *testing.T) {
|
|
f := func(t *testing.T) models.Datastore {
|
|
return NewMock()
|
|
}
|
|
datastoretest.RunAllTests(t, f, datastoretest.NewBasicResourceProvider())
|
|
}
|