class RSpec::Core::Profiler
def example_group_finished(notification)
Experimental RBS support (using type sampling data from the type_fusion
project).
def example_group_finished: (RSpec::Core::Notifications::GroupNotification notification) -> nil
This signature was generated using 1 sample from 1 application.
def example_group_finished(notification) return unless notification.group.top_level? group = @example_groups[notification.group] return unless group.key?(:start) group[:total_time] = Time.now - group[:start] end