aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/state/store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/state/store_test.go')
-rw-r--r--internal/app/state/store_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/internal/app/state/store_test.go b/internal/app/state/store_test.go
new file mode 100644
index 00000000..8aa348a8
--- /dev/null
+++ b/internal/app/state/store_test.go
@@ -0,0 +1,14 @@
+package state_test
+
+import (
+ "log"
+ "testing"
+
+ "hakurei.app/container/check"
+ "hakurei.app/internal/app/state"
+ "hakurei.app/message"
+)
+
+func TestMulti(t *testing.T) {
+ testStore(t, state.NewMulti(message.NewMsg(log.New(log.Writer(), "multi: ", 0)), check.MustAbs(t.TempDir())))
+}