class RSpec::Core::ExampleGroup

def self.with_replaced_metadata(meta)

Other tags:
    Private: -
def self.with_replaced_metadata(meta)
  orig_metadata = metadata
  @metadata = meta
  yield
ensure
  @metadata = orig_metadata
end