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

#match_rulesObject (readonly)

Returns the value of attribute match_rules.



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

def match_rules
  @match_rules
end

#responseObject (readonly)

Returns the value of attribute response.



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

def response
  @response
end

#stub_idObject (readonly)

Returns the value of attribute stub_id.



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

def stub_id
  @stub_id
end

#triggersObject (readonly)

Returns the value of attribute triggers.



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

def triggers
  @triggers
end

#uriObject (readonly)

Returns the value of attribute uri.



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

def uri
  @uri
end

Instance Method Details

#matches?(_criteria, _logger) ⇒ Boolean

Returns:

  • (Boolean)


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

def matches?(_criteria, _logger)
  false
end

#response_for(_request) ⇒ Object



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

def response_for(_request)
  self
end

#to_hashObject



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

def to_hash
  {}
end

#to_sObject



33
34
35
# File 'lib/http_stub/server/stub/empty.rb', line 33

def to_s
  ""
end