drzel/another_toy_robot

View on GitHub
lib/another_toy_robot/right_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "another_toy_robot/command"

class RightCommand < Command
  def issue_command
    @target.right
  end
end