d484e4ffb9
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
11 lines
117 B
Go
11 lines
117 B
Go
package repo
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMemBasic(t *testing.T) {
|
|
repo := NewMemory(nil)
|
|
basicTest(t, repo)
|
|
}
|