2021-11-01 00:24:26 +00:00
|
|
|
//stm: #unit
|
2019-07-09 18:11:32 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2019-07-10 15:10:45 +00:00
|
|
|
func TestMemBasic(t *testing.T) {
|
2019-07-09 18:11:32 +00:00
|
|
|
repo := NewMemory(nil)
|
2021-11-01 00:24:26 +00:00
|
|
|
//stm: @REPO_MEM_001
|
2019-07-10 15:10:45 +00:00
|
|
|
basicTest(t, repo)
|
2019-07-09 18:11:32 +00:00
|
|
|
}
|