0g-chain/x/cdp/simulation/utils_test.go
drklee3 3375484f79
Update deprecated Cosmos methods (#1530)
* Use cosmossdk.io/errors for deprecated error methods

* Update error registration with cosmossdk.io/errors

* Use cosmossdk.io/math for deprecated sdk.Int alias

* Fix modified proto file

* Update sdk.Int usage in swap hooks

* Update e2e test deprecated method usage
2023-04-05 16:21:59 -07:00

31 lines
867 B
Go

package simulation_test
// import (
// "testing"
// "github.com/stretchr/testify/require"
// sdk "github.com/cosmos/cosmos-sdk/types"
// "github.com/kava-labs/kava/x/cdp/simulation"
// )
// func TestShiftDec(t *testing.T) {
// tests := []struct {
// value sdk.Dec
// shift sdkmath.Int
// expected sdk.Dec
// }{
// {sdk.MustNewDecFromStr("5.5"), sdkmath.NewInt(1), sdk.MustNewDecFromStr("55")},
// {sdk.MustNewDecFromStr("5.5"), sdkmath.NewInt(-1), sdk.MustNewDecFromStr("0.55")},
// {sdk.MustNewDecFromStr("5.5"), sdkmath.NewInt(2), sdk.MustNewDecFromStr("550")},
// {sdk.MustNewDecFromStr("5.5"), sdkmath.NewInt(-2), sdk.MustNewDecFromStr("0.055")},
// }
// for _, tt := range tests {
// t.Run(tt.value.String(), func(t *testing.T) {
// require.Equal(t, tt.expected, simulation.ShiftDec(tt.value, tt.shift))
// })
// }
// }