Class: Rack::ClientSpec::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/client_spec/result.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error = nil) ⇒ Result

Returns a new instance of Result.



7
8
9
# File 'lib/rack/client_spec/result.rb', line 7

def initialize(error = nil)
  @error = error
end

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



5
6
7
# File 'lib/rack/client_spec/result.rb', line 5

def error
  @error
end

Instance Method Details

#success?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/rack/client_spec/result.rb', line 11

def success?
  @error.nil?
end