add a transcript test to close #873

This commit is contained in:
Arya Irani 2019-10-19 11:01:12 -04:00
parent 2994f916fe
commit 4c2a8f23e1
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,13 @@
See [this ticket](https://github.com/unisonweb/unison/issues/873); the point being, this shouldn't crash the runtime. :)
```unison
(-) = builtin.Nat.sub
```
```ucm
.> add
```
```unison
baz x = x - 1
```

View File

@ -0,0 +1,46 @@
See [this ticket](https://github.com/unisonweb/unison/issues/873); the point being, this shouldn't crash the runtime. :)
```unison
(-) = builtin.Nat.sub
```
```ucm
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These new definitions are ok to `add`:
- : builtin.Nat -> builtin.Nat -> builtin.Int
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
```
```ucm
.> add
⍟ I've added these definitions:
- : builtin.Nat -> builtin.Nat -> builtin.Int
```
```unison
baz x = x - 1
```
```ucm
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These new definitions are ok to `add`:
baz : builtin.Nat -> builtin.Int
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
```