瀏覽代碼

Enable division tests

DricomDragon 5 年之前
父節點
當前提交
96468b8c76
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      test.bats

+ 0 - 2
test.bats

@@ -52,13 +52,11 @@
 }
 
 @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" ]
 }