class Shoes module Mock class InputBox include Shoes::Mock::CommonMethods attr_accessor :text, :left, :top def enabled(value) end def highlight_text(start_index, finish_index) end def caret_to(index) end end class EditBox < InputBox end class EditLine < InputBox end end end