class Greenjaguar::Strategies::DefaultWaitStrategy

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/greenjaguar/strategies/default_wait_strategy.rb, line 4
def initialize
  super
  @time_to_wait = 0
end

Public Instance Methods

reset_vars() click to toggle source
# File lib/greenjaguar/strategies/default_wait_strategy.rb, line 9
def reset_vars
end
wait() click to toggle source
# File lib/greenjaguar/strategies/default_wait_strategy.rb, line 12
def wait
  sleep @time_to_wait
end