Ver Fonte

Enable division tests

DricomDragon há 5 anos atrás
pai
commit
96468b8c76
1 ficheiros alterados com 0 adições e 2 exclusões
  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" ]
 }