Sha256: 20101a612baa355430e01ad486b92fe8742323a5ce4d546465a43c547c3a9a01
Contents?: true
Size: 576 Bytes
Versions: 19
Compression:
Stored size: 576 Bytes
Contents
# this file is automatically required when you run `assert` # put any test helpers here # add the root dir to the load path require 'pathname' ROOT = Pathname.new(File.expand_path('../..', __FILE__)) $LOAD_PATH.unshift(ROOT.to_s) TEST_SUPPORT_ROOT = ROOT.join('test/support') # require pry for debugging (`binding.pry`) require 'pry' require 'test/support/factory' require 'fileutils' require 'logger' log_file_path = ROOT.join("log/test.log") FileUtils.rm_f log_file_path TEST_LOGGER = Logger.new(File.open(log_file_path, 'w')) require TEST_SUPPORT_ROOT.join('routes')
Version data entries
19 entries across 19 versions & 1 rubygems