class RSpec::Core::Notifications::SeedNotification

Public Instance Methods

@return [String] The seed information fully formatted in the way that

RSpec's built-in formatters emit.
# File rspec-core/lib/rspec/core/notifications.rb, line 282
def fully_formatted
  "\nRandomized with seed #{seed}\n"
end

@api @return [Boolean] has the seed been used?

# File rspec-core/lib/rspec/core/notifications.rb, line 275
def seed_used?
  !!used
end