class RSpec::Core::Notifications::SeedNotification
Public Instance Methods
fully_formatted()
click to toggle source
@return [String] The seed information fully formatted in the way that
RSpec's built-in formatters emit.
# File lib/rspec/core/notifications.rb, line 280 def fully_formatted "\nRandomized with seed #{seed}\n" end
seed_used?()
click to toggle source
@api @return [Boolean] has the seed been used?
# File lib/rspec/core/notifications.rb, line 273 def seed_used? !!used end