Exception: ParameterizedTesting::RSpec::InvalidInputFormatError
- Inherits:
-
Exception
- Object
- Exception
- ParameterizedTesting::RSpec::InvalidInputFormatError
- Defined in:
- lib/parameterized_testing/rspec.rb
Overview
Error raised when the format of the parameterized test input is incorrect.
Instance Attribute Summary collapse
- #input ⇒ Input readonly
- #signature ⇒ Signature readonly
Instance Method Summary collapse
-
#initialize(message = nil, input:, signature:) ⇒ InvalidInputFormatError
constructor
A new instance of InvalidInputFormatError.
Constructor Details
#initialize(message = nil, input:, signature:) ⇒ InvalidInputFormatError
Returns a new instance of InvalidInputFormatError.
17 18 19 20 21 |
# File 'lib/parameterized_testing/rspec.rb', line 17 def initialize( = nil, input:, signature:) @input = input @signature = signature super() end |
Instance Attribute Details
#input ⇒ Input (readonly)
13 14 15 |
# File 'lib/parameterized_testing/rspec.rb', line 13 def input @input end |
#signature ⇒ Signature (readonly)
15 16 17 |
# File 'lib/parameterized_testing/rspec.rb', line 15 def signature @signature end |