drzel/another_toy_robot

View on GitHub
lib/another_toy_robot/invalid_command.rb

Summary

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

class InvalidCommand < Command
  def execute
    puts "Invalid command"
  end
end