cartodb/spec/doubles/request.rb
2020-06-15 10:58:47 +08:00

15 lines
267 B
Ruby

module Doubles
class Request
def initialize(attributes={})
@host = attributes.fetch(:host, '')
@fullpath = attributes.fetch(:fullpath, '')
@params = attributes.fetch(:params, {})
end
attr_reader :host, :params, :fullpath
end
end