drzel/another_toy_robot

View on GitHub
lib/another_toy_robot/move_command.rb

Summary

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

class MoveCommand < Command
  def issue_command
    @target.move
  end
end