A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.rubydoc.info/github/teamcapybara/capybara/Capybara/Helpers/Timer below:

Timer – Documentation for teamcapybara/capybara (master) – RubyDoc.info

Class: Capybara::Helpers::Timer Private
Inherits:
Object show all
Defined in:
lib/capybara/helpers.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse Constructor Details #initialize(expire_in) ⇒ Timer

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Timer.

103
104
105
106
# File 'lib/capybara/helpers.rb', line 103

def initialize(expire_in)
  @start = current
  @expire_in = expire_in
end
Instance Method Details #expired? ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

108
109
110
111
112
113
114
# File 'lib/capybara/helpers.rb', line 108

def expired?
  if stalled?
    raise Capybara::FrozenInTime, 'Time appears to be frozen. Capybara does not work with libraries which freeze time, consider using time travelling instead'
  end

  current - @start >= @expire_in
end
#stalled? ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

116
117
118
# File 'lib/capybara/helpers.rb', line 116

def stalled?
  @start == current
end

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4