Compare commits

...

1 commit

Author SHA1 Message Date
54cc182092
(patch) Update readme, force build for prior merge.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m45s
2024-06-23 21:42:22 -05:00
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
// See: https://github.com/scalameta/scalafmt/tags for the latest tags.
version = 3.8.1
version = 3.8.2
runner.dialect = scala3
maxColumn = 80

View file

@ -7,14 +7,18 @@ Test data generation library for Scala 3. `gs-datagen` provides _composable_
generator definitions that can be reused across tests.
- [Usage](#usage)
- [Dependency](#dependency)
- [Imports](#imports)
- [Examples](#examples)
- [Example: Generate a Random User](#example-generate-a-random-user)
- [Example: Require Input](#example-require-input)
- [Supported Generators](#supported-generators)
- [Donate](#donate)
## Usage
### Dependency
```
object Gs {
val Datagen: ModuleID =
@ -28,7 +32,7 @@ The standard way to use `gs-datagen` is to import the entire package, which
pulls in `Gen[A]`, `Generated[A]` and `Datagen[A, -I]`:
```scala
import gs.datagen.v0.*
import gs.datagen.v0._
```
## Examples