rubyx/test/slot_machine/helper.rb

10 lines
147 B
Ruby
Raw Normal View History

2018-03-15 20:51:46 +05:30
require_relative '../helper'
module SlotMachine
class InstructionMock < Instruction
def initialize
super("mocking")
end
end
end