Class: RSpec::Core::SharedExampleGroup::Collection
- Inherits:
-
Object
- Object
- RSpec::Core::SharedExampleGroup::Collection
- Defined in:
- lib/rspec/core/shared_example_group/collection.rb
Instance Method Summary collapse
- #[](key) ⇒ Object
-
#initialize(sources, examples) ⇒ Collection
constructor
A new instance of Collection.
Constructor Details
#initialize(sources, examples) ⇒ Collection
Returns a new instance of Collection.
6 7 8 |
# File 'lib/rspec/core/shared_example_group/collection.rb', line 6 def initialize(sources, examples) @sources, @examples = sources, examples end |
Instance Method Details
#[](key) ⇒ Object
10 11 12 |
# File 'lib/rspec/core/shared_example_group/collection.rb', line 10 def [](key) fetch_examples(key) || warn_deprecation_and_fetch_anyway(key) end |