mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
434 B
23 lines
434 B
package memory |
|
|
|
import ( |
|
"os" |
|
"testing" |
|
|
|
"github.com/Sirupsen/logrus" |
|
"github.com/coreos/dex/storage" |
|
"github.com/coreos/dex/storage/conformance" |
|
) |
|
|
|
func TestStorage(t *testing.T) { |
|
logger := &logrus.Logger{ |
|
Out: os.Stderr, |
|
Formatter: &logrus.TextFormatter{DisableColors: true}, |
|
Level: logrus.DebugLevel, |
|
} |
|
|
|
newStorage := func() storage.Storage { |
|
return New(logger) |
|
} |
|
conformance.RunTests(t, newStorage) |
|
}
|
|
|