Fix exception when doing expect boolean = ..

Add new Air Assert Bool
Add acceptance test 76
This commit is contained in:
Kasey White
2023-03-08 22:20:01 -05:00
committed by Kasey
parent 6cde0628a7
commit c85240cbed
6 changed files with 106 additions and 49 deletions

View File

@@ -0,0 +1,5 @@
test expect_positive() {
let val = 5
expect True = val > 0
True
}