Monday, 26 August 2013

Rake error RepeatedConditional

Rake error RepeatedConditional

I have below error:
tests @action.placed.!=(true) at least 3 times (RepeatedConditional)
Generated from below code:
def left
super unless @action.placed != true
end
def right
super unless @action.placed != true
end
def move_forward
super unless @action.placed != true
end
How would we get rid of this repeat?

No comments:

Post a Comment