1

Robot クラスで以下のエラーが発生します。

Commands tests @robot.placed at least 4 times (RepeatedConditional)

これは、それを引き起こしている問題のあるコードです:

def move
  @robot.move_forward if @robot.placed
end

def left
  @robot.left if @robot.placed
end

def right
  @robot.right if @robot.placed
end

def report
  puts @robot.report_current_position if @robot.placed
end

この警告を回避するには、これをどのように再編成しますか?

4

1 に答える 1