21 lines
432 B
Go
21 lines
432 B
Go
package config
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
func TestDefaultConfig(t *testing.T) {
|
|
cfg := DefaultConfig()
|
|
require.True(t, cfg.GetMinGasPrices().IsZero())
|
|
}
|
|
|
|
func TestSetMinimumFees(t *testing.T) {
|
|
cfg := DefaultConfig()
|
|
cfg.SetMinGasPrices(sdk.DecCoins{sdk.NewInt64DecCoin("foo", 5)})
|
|
require.Equal(t, "5.000000000000000000foo", cfg.MinGasPrices)
|
|
}
|