oldvip_test.go 253 B

1234567891011121314
  1. package dao
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDaoOldFrozenChange(t *testing.T) {
  7. convey.Convey("OldFrozenChange", t, func() {
  8. err := d.OldFrozenChange(7593623, 0)
  9. convey.So(err, convey.ShouldBeNil)
  10. })
  11. }