We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd287d8 commit 4e8c57aCopy full SHA for 4e8c57a
ex2/README.md
@@ -22,7 +22,7 @@ let ``The item should not be added if the id is not unique``() =
22
defaultPreconditions
23
with
24
presets = [aggId, [ItemRegistered(item, qty)]] }
25
- |> When (aggId, RegisterInventoryItem (item, qty))
+ |> When (aggId, RegisterInventoryItem { Item = item; Quantity = qty })
26
|> Then (InvalidState "Inventory" |> fail)
27
```
28
@@ -40,8 +40,8 @@ Update the functions in the `Inventory` module so they look like this:
40
41
```fsharp
42
let executeCommand state command =
43
- match state with
44
- | ItemInit -> handleAtInit command
+ match state, command with
+ | ItemInit, (id, RegisterInventoryItem cmd) -> handleAtInit (id, cmd)
45
| _ -> InvalidState "Inventory" |> fail
46
47
let evolveAtInit = function
0 commit comments