ソースを参照

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" ]
 }