Class: HttpStub::Server::Stub::Empty

Inherits:
Object
  • Object
show all
Defined in:
lib/http_stub/server/stub/empty.rb

Constant Summary collapse

INSTANCE =
self.new.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def headers
  @headers
end

#methodObject (readonly)

Returns the value of attribute method.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def method
  @method
end

#parametersObject (readonly)

Returns the value of attribute parameters.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def parameters
  @parameters
end

#responseObject (readonly)

Returns the value of attribute response.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def response
  @response
end

#stub_uriObject (readonly)

Returns the value of attribute stub_uri.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def stub_uri
  @stub_uri
end

#triggersObject (readonly)

Returns the value of attribute triggers.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def triggers
  @triggers
end

#uriObject (readonly)

Returns the value of attribute uri.



18
19
20
# File 'lib/http_stub/server/stub/empty.rb', line 18

def uri
  @uri
end

Instance Method Details

#matches?(_criteria, _logger) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/http_stub/server/stub/empty.rb', line 20

def matches?(_criteria, _logger)
  false
end

#response_for(_request) ⇒ Object



24
25
26
# File 'lib/http_stub/server/stub/empty.rb', line 24

def response_for(_request)
  self
end

#to_sObject



28
29
30
# File 'lib/http_stub/server/stub/empty.rb', line 28

def to_s
  ""
end