(t *testing.T)
| 237 | } |
| 238 | |
| 239 | func TestErrorPath(t *testing.T) { |
| 240 | Convey("can not init db", t, func() { |
| 241 | ClosePublicKeyStore() |
| 242 | err := InitPublicKeyStore("/path/not/exist", nil) |
| 243 | So(pks, ShouldBeNil) |
| 244 | So(err, ShouldNotBeNil) |
| 245 | }) |
| 246 | } |
| 247 | |
| 248 | func TestMarshalNode(t *testing.T) { |
| 249 | Convey("marshal unmarshal node", t, func() { |
nothing calls this directly
no test coverage detected