(t *testing.T)
| 271 | } |
| 272 | |
| 273 | func TestMarshalBPInfo(t *testing.T) { |
| 274 | log.SetLevel(log.DebugLevel) |
| 275 | Convey("marshal unmarshal BPInfo", t, func() { |
| 276 | sBP, err := yaml.Marshal(BP) |
| 277 | So(err, ShouldBeNil) |
| 278 | log.Debugf("BP:\n%s", sBP) |
| 279 | }) |
| 280 | } |