Method: RSpec::Core::Notifications::ProfileNotification#percentage
- Defined in:
- lib/rspec/core/notifications.rb
#percentage ⇒ String
Returns the percentage of total time taken.
457 458 459 460 461 462 463 |
# File 'lib/rspec/core/notifications.rb', line 457 def percentage @percentage ||= begin time_taken = slow_duration / duration '%.1f' % ((time_taken.nan? ? 0.0 : time_taken) * 100) end end |