Module: RSpec::Core::SharedExampleGroup::TopLevelDSL Private
- Defined in:
- lib/rspec/core/shared_example_group.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Shared examples top level DSL.
Class Method Summary collapse
-
.expose_globally! ⇒ void
private
Adds the top level DSL methods to Module and the top level binding.
-
.remove_globally! ⇒ void
private
Removes the top level DSL methods to Module and the top level binding.
Class Method Details
.expose_globally! ⇒ void
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.
Adds the top level DSL methods to Module and the top level binding.
124 125 126 127 128 |
# File 'lib/rspec/core/shared_example_group.rb', line 124 def self.expose_globally! return if exposed_globally? Core::DSL.change_global_dsl(&definitions) @exposed_globally = true end |
.remove_globally! ⇒ void
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.
Removes the top level DSL methods to Module and the top level binding.
133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/rspec/core/shared_example_group.rb', line 133 def self.remove_globally! return unless exposed_globally? Core::DSL.change_global_dsl do undef shared_examples undef shared_context undef shared_examples_for end @exposed_globally = false end |