Sha256: ffd11b04b27a6245f4240561daf82e80cea535d38c832d624b4e29c40f5796fb

Contents?: true

Size: 243 Bytes

Versions: 428

Compression:

Stored size: 243 Bytes

Contents

module TimeHelpers
  def fixed_time
    @fixed_time ||= Time.utc(2014, 1, 15, 11, 0, 0).to_f
  end

  def advance_frozen_time(time, addition)
    Time.at(time.to_f + addition).tap do |new_time|
      Timecop.freeze(new_time)
    end
  end
end

Version data entries

428 entries across 428 versions & 1 rubygems

Version Path
appsignal-3.7.0-java spec/support/helpers/time_helpers.rb
appsignal-3.7.0 spec/support/helpers/time_helpers.rb
appsignal-3.6.5-java spec/support/helpers/time_helpers.rb
appsignal-3.6.5 spec/support/helpers/time_helpers.rb
appsignal-3.6.4-java spec/support/helpers/time_helpers.rb
appsignal-3.6.4 spec/support/helpers/time_helpers.rb
appsignal-3.6.3-java spec/support/helpers/time_helpers.rb
appsignal-3.6.3 spec/support/helpers/time_helpers.rb
appsignal-3.6.2-java spec/support/helpers/time_helpers.rb
appsignal-3.6.2 spec/support/helpers/time_helpers.rb
appsignal-3.6.1-java spec/support/helpers/time_helpers.rb
appsignal-3.6.1 spec/support/helpers/time_helpers.rb
appsignal-3.6.0-java spec/support/helpers/time_helpers.rb
appsignal-3.6.0 spec/support/helpers/time_helpers.rb
appsignal-3.5.6-java spec/support/helpers/time_helpers.rb
appsignal-3.5.6 spec/support/helpers/time_helpers.rb
appsignal-3.5.5-java spec/support/helpers/time_helpers.rb
appsignal-3.5.5 spec/support/helpers/time_helpers.rb
appsignal-3.5.4-java spec/support/helpers/time_helpers.rb
appsignal-3.5.4 spec/support/helpers/time_helpers.rb