abandon
parent
3954d3cc6a
commit
7470e760bd
|
|
@ -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{},
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue