rubyx/test/mom/instruction/helper.rb

10 lines
139 B
Ruby
Raw Normal View History

2018-05-15 18:29:27 +02:00
require_relative '../helper'
module Mom
class InstructionMock < Instruction
2019-08-10 20:59:31 +02:00
def initialize
super("mocking")
end
2018-05-15 18:29:27 +02:00
end
end