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.5.3-java spec/support/helpers/time_helpers.rb
appsignal-3.5.3 spec/support/helpers/time_helpers.rb
appsignal-3.5.2-java spec/support/helpers/time_helpers.rb
appsignal-3.5.2 spec/support/helpers/time_helpers.rb
appsignal-3.5.1-java spec/support/helpers/time_helpers.rb
appsignal-3.5.1 spec/support/helpers/time_helpers.rb
appsignal-3.5.0-java spec/support/helpers/time_helpers.rb
appsignal-3.5.0 spec/support/helpers/time_helpers.rb
appsignal-3.4.16-java spec/support/helpers/time_helpers.rb
appsignal-3.4.16 spec/support/helpers/time_helpers.rb
appsignal-3.4.15-java spec/support/helpers/time_helpers.rb
appsignal-3.4.15 spec/support/helpers/time_helpers.rb
appsignal-3.4.14-java spec/support/helpers/time_helpers.rb
appsignal-3.4.14 spec/support/helpers/time_helpers.rb
appsignal-3.4.13-java spec/support/helpers/time_helpers.rb
appsignal-3.4.13 spec/support/helpers/time_helpers.rb
appsignal-3.4.12-java spec/support/helpers/time_helpers.rb
appsignal-3.4.12 spec/support/helpers/time_helpers.rb
appsignal-3.4.11-java spec/support/helpers/time_helpers.rb
appsignal-3.4.11 spec/support/helpers/time_helpers.rb