0g-chain/x/cdp/simulation/utils_test.go
Ruaridh ffef832d45
Upgrade to sdk v0.44.5 and add IBC (#1106)
- Upgrade cosmos-sdk to v0.44.5 from v0.39.2
- Add Legacy Tx Endpoint for backwards compatibility
- Add IBC v1.2.3 Support

Co-authored-by: DracoLi <draco@dracoli.com>
Co-authored-by: drklee3 <derrick@dlee.dev>
Co-authored-by: denalimarsh <denalimarsh@gmail.com>
Co-authored-by: Draco Li <draco@kava.io>
Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com>
Co-authored-by: Kevin Davis <karzak@users.noreply.github.com>
Co-authored-by: Denali Marsh <denali@kava.io>
2022-01-07 17:39:27 -07:00

31 lines
847 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 sdk.Int
// expected sdk.Dec
// }{
// {sdk.MustNewDecFromStr("5.5"), sdk.NewInt(1), sdk.MustNewDecFromStr("55")},
// {sdk.MustNewDecFromStr("5.5"), sdk.NewInt(-1), sdk.MustNewDecFromStr("0.55")},
// {sdk.MustNewDecFromStr("5.5"), sdk.NewInt(2), sdk.MustNewDecFromStr("550")},
// {sdk.MustNewDecFromStr("5.5"), sdk.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))
// })
// }
// }