Class: RSpec::Matchers::BuiltIn::ReliableMatchData Private
- Inherits:
-
Object
- Object
- RSpec::Matchers::BuiltIn::ReliableMatchData
- Defined in:
- lib/rspec/matchers/built_in/match.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Used to wrap match data and make it reliable for 1.8.7
Instance Method Summary collapse
-
#captures ⇒ Object
private
returns an array of captures from the match data.
-
#initialize(match_data) ⇒ ReliableMatchData
constructor
private
A new instance of ReliableMatchData.
-
#names ⇒ Object
private
Returns match data names for named captures.
Constructor Details
#initialize(match_data) ⇒ ReliableMatchData
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ReliableMatchData.
73 74 75 |
# File 'lib/rspec/matchers/built_in/match.rb', line 73 def initialize(match_data) @match_data = match_data end |
Instance Method Details
#captures ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
returns an array of captures from the match data
98 99 100 |
# File 'lib/rspec/matchers/built_in/match.rb', line 98 def captures match_data.captures end |
#names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns match data names for named captures
82 83 84 |
# File 'lib/rspec/matchers/built_in/match.rb', line 82 def names [] end |