10 lines
139 B
Ruby
10 lines
139 B
Ruby
require_relative '../helper'
|
|
|
|
module Mom
|
|
class InstructionMock < Instruction
|
|
def initialize
|
|
super("mocking")
|
|
end
|
|
end
|
|
end
|