Sha256: 1393ee98d5d4a6a2e9e7aae0c780b2bf9deb6138d32f4e5b99d2ddcfa718e731

Contents?: true

Size: 531 Bytes

Versions: 4

Compression:

Stored size: 531 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../../test/dummy/config/environment.rb",  __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
require "rails/test_help"
require "minitest/pride"
require "pry-rails"

Minitest.backtrace_filter = Minitest::BacktraceFilter.new

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
human_urls-0.1.7.pre.alpha.0 test/test_helper.rb
human_urls-0.1.6.pre.alpha.0 test/test_helper.rb
human_urls-0.1.5.pre.alpha.0 test/test_helper.rb
human_urls-0.1.4.pre.alpha.0 test/test_helper.rb