mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
20 lines
468 B
Go
20 lines
468 B
Go
|
package community_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/community"
|
||
|
"github.com/kava-labs/kava/x/community/keeper"
|
||
|
"github.com/kava-labs/kava/x/community/testutil"
|
||
|
)
|
||
|
|
||
|
func TestABCIDisableInflation(t *testing.T) {
|
||
|
testFunc := func(ctx sdk.Context, k keeper.Keeper) {
|
||
|
community.BeginBlocker(ctx, k)
|
||
|
}
|
||
|
suite.Run(t, testutil.NewDisableInflationTestSuite(testFunc))
|
||
|
}
|