* build(deps): Bump pgregory.net/rapid from 0.4.8 to 0.5.2 Bumps [pgregory.net/rapid](https://github.com/flyingmutant/rapid) from 0.4.8 to 0.5.2. - [Release notes](https://github.com/flyingmutant/rapid/releases) - [Commits](https://github.com/flyingmutant/rapid/compare/v0.4.8...v0.5.2) --- updated-dependencies: - dependency-name: pgregory.net/rapid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix group tests * update orm to 0.5.2 * Fix some tests * finish upgrading orm Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: Julien Robert <julien@rbrt.fr>
19 lines
527 B
Go
19 lines
527 B
Go
package orm
|
|
|
|
import (
|
|
"pgregory.net/rapid"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
|
)
|
|
|
|
// genTableModel generates a new table model. At the moment it doesn't
|
|
// generate empty strings for Name.
|
|
var genTableModel = rapid.Custom(func(t *rapid.T) *testdata.TableModel {
|
|
return &testdata.TableModel{
|
|
Id: rapid.Uint64().Draw(t, "id"),
|
|
Name: rapid.StringN(1, 100, 150).Draw(t, "name"),
|
|
Number: rapid.Uint64().Draw(t, "number "),
|
|
Metadata: []byte(rapid.StringN(1, 100, 150).Draw(t, "metadata")),
|
|
}
|
|
})
|