data_workshop/data_remake_test.go

21 lines
460 B
Go
Raw Permalink Normal View History

package main
import (
"testing"
)
func estRemakeGob(t *testing.T) {
2020-05-22 07:39:43 +00:00
country := &KeyList{}
LoadGob("./data/country-fix.gob", country)
// for i, ikey := range country.Keys {
// c := ikey.(Country)
// name := []rune(string(c.Name))
// iname := name[0 : len(name)-2]
// t.Error(string(name), string(iname))
// c.Name = []byte(string(iname))
// country.Keys[i] = c
// }
// SaveData("./data/country-fix.gob", country)
t.Error(country.Keys...)
}