浏览代码

Skip tests for division and unary operators

DricomDragon 5 年之前
父节点
当前提交
ffa4b6735f
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      test.bats

+ 3 - 0
test.bats

@@ -46,16 +46,19 @@
 }
 
 @test "Minus unary operand" {
+        skip "Feature not implemented"
 	result="$(echo '-4=' | ./eval.out)"
 	[ "$result" = "-4" ]
 }
 
 @test "Basic division" {
+        skip "Feature not implemented"
 	result="$(echo '42 / 7 =' | ./eval.out)"
 	[ "$result" = "6" ]
 }
 
 @test "Basic truncated division" {
+        skip "Feature not implemented"
 	result="$(echo '16 / 3 =' | ./eval.out)"
 	[ "$result" = "5" ]
 }