break apart the unit tests into two

This commit is contained in:
Niko Matsakis 2017-04-03 05:39:00 -04:00
parent 5c0d15b40f
commit 3b3c1719f7

View File

@ -401,6 +401,10 @@ fn issue_55_test1() {
#[test]
fn unit_test1() {
assert!(unit::parse_Expr("3 + 4 * 5").is_ok());
}
#[test]
fn unit_test2() {
assert!(unit::parse_Expr("3 + +").is_err());
}