master
bel 2021-09-08 14:16:54 -06:00
parent 3954d3cc6a
commit 7470e760bd
1 changed files with 22 additions and 0 deletions

22
game/state/state_test.go Normal file
View File

@ -0,0 +1,22 @@
package state
import "testing"
func TestStateCopy(t *testing.T) {
}
func TestStateRedact(t *testing.T) {
t.Fatal("not impl")
}
func newTestState() State {
return State{
Players: []PlayerState{
PlayerState{
ID: "id1",
Name: "name1",
},
},
Cards: []Cards{},
}
}