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 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []

View File

@@ -0,0 +1,3 @@
name = 'aiken-lang/acceptance_test_076'
version = '0.0.0'
description = ''

View File

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