mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
31 lines
666 B
Go
31 lines
666 B
Go
|
package keeper_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/kavadist/testutil"
|
||
|
)
|
||
|
|
||
|
type keeperTestSuite struct {
|
||
|
testutil.Suite
|
||
|
}
|
||
|
|
||
|
func (suite *keeperTestSuite) SetupTest() {
|
||
|
suite.Suite.SetupTest()
|
||
|
}
|
||
|
|
||
|
func TestKeeperTestSuite(t *testing.T) {
|
||
|
suite.Run(t, new(keeperTestSuite))
|
||
|
}
|
||
|
|
||
|
func (suite *keeperTestSuite) TestSetAndGetPreviousBlockTime() {
|
||
|
newTime := time.Date(2020, time.March, 1, 1, 0, 0, 0, time.UTC)
|
||
|
suite.Keeper.SetPreviousBlockTime(suite.Ctx, newTime)
|
||
|
blockTime, found := suite.Keeper.GetPreviousBlockTime(suite.Ctx)
|
||
|
suite.Require().True(found)
|
||
|
suite.Require().Equal(newTime, blockTime)
|
||
|
}
|