drzel/another_toy_robot

View on GitHub
lib/another_toy_robot/report_command.rb

Summary

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

class ReportCommand < Command
  def issue_command
    @target.report
  end
end