Sha256: 2a8d432a659b36f325f1484e716f5eeec295639ee151afd22b4eb4fcc01bd609

Contents?: true

Size: 577 Bytes

Versions: 1

Compression:

Stored size: 577 Bytes

Contents

# this file is automatically required when you run `assert`
# put any test helpers here

# add the root dir to the load path
$LOAD_PATH.unshift(File.expand_path("../..", __FILE__))

# require pry for debugging (`binding.pry`)
require 'pry'

require 'pathname'
ROOT_PATH = Pathname.new(File.expand_path('../..', __FILE__))

require 'logger'
TEST_LOGGER = if ENV['DEBUG']
  # don't show datetime in the logs
  Logger.new(ROOT_PATH.join("log/test.log")).tap{ |l| l.datetime_format = '' }
end

JOIN_SECONDS = 0.001

require 'test/support/factory'

# TODO: put test helpers here...

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dat-worker-pool-0.6.0 test/helper.rb