abandon
This commit is contained in:
22
game/state/state_test.go
Normal file
22
game/state/state_test.go
Normal 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{},
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user