module Rspec::Eventually

Constants

VERSION

Attributes

pause[RW]
timeout[RW]

Public Instance Methods

eventually(target, custom_msg = nil) click to toggle source
# File lib/rspec/eventually.rb, line 80
def eventually(target, custom_msg = nil)
  Eventually.new(target, custom_msg)
end
eventually_not(target, custom_msg = nil) click to toggle source
# File lib/rspec/eventually.rb, line 84
def eventually_not(target, custom_msg = nil)
  Eventually.new(target, custom_msg).not
end