Method: RSpec::Core::World#record
- Defined in:
- lib/rspec/core/world.rb
permalink #record(example_group) ⇒ 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.
Records an example group.
81 82 83 84 |
# File 'lib/rspec/core/world.rb', line 81 def record(example_group) @configuration.on_example_group_definition_callbacks.each { |block| block.call(example_group) } @example_group_counts_by_spec_file[example_group.[:absolute_file_path]] += 1 end |