rubyx/test/mom/instruction/helper.rb

10 lines
139 B
Ruby

require_relative '../helper'
module Mom
class InstructionMock < Instruction
def initialize
super("mocking")
end
end
end