mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
3375484f79
* 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
31 lines
867 B
Go
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))
|
|
// })
|
|
// }
|
|
// }
|