oo i can sql second try

This commit is contained in:
Bel LaPointe
2025-02-12 10:44:59 -07:00
parent 688b7d9c01
commit 855ba998c9
2 changed files with 45 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
package lobby_test
import (
"gitea/price-is-wrong/src/lib"
"gitea/price-is-wrong/src/state/fsm/lobby"
"testing"
)
func TestOpen(t *testing.T) {
l, err := lobby.Open(lib.NewTestCtx(t), "id")
if err != nil {
t.Fatal(err)
}
t.Logf("%+v", l)
}