func (s *MySuite) TestSetCoerceNil(c *C) { var b box.Time b.SetCoerceNil(nil, box.Empty) c.Check(b.Status(), Equals, byte(box.Empty)) }
func (s *MySuite) TestSetCoerceZero(c *C) { var b box.Time var zero time.Time b.SetCoerceZero(zero, box.Empty) c.Check(b.Status(), Equals, byte(box.Empty)) }
func (s *MySuite) TestZeroValueTimeIsUndefined(c *C) { var b box.Time c.Check(b.Status(), Equals, byte(box.Undefined)) }