Sha256: 91a369dcf4c15bb393c9899777cea40acb54a281686b1b3da5b7501c9b120c62

Contents?: true

Size: 635 Bytes

Versions: 14

Compression:

Stored size: 635 Bytes

Contents

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

unless ENV['TRAVIS']
  require 'simplecov'
  SimpleCov.start do
    add_filter '/dummy/'
  end
end

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"

#Run any available migration
#ActiveRecord::Migrator.migrate 'up'
load 'dummy/db/schema.rb'

# Set fixtures root
ActiveSupport::TestCase.fixture_path=(File.expand_path("../dummy/test/fixtures",  __FILE__))
ActiveSupport::TestCase.fixtures :all

Rails.backtrace_cleaner.remove_silencers!

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
magic_grid-0.12.6 test/test_helper.rb
magic_grid-0.12.5 test/test_helper.rb
magic_grid-0.12.4 test/test_helper.rb
magic_grid-0.12.3 test/test_helper.rb
magic_grid-0.12.2 test/test_helper.rb
magic_grid-0.12.1 test/test_helper.rb
magic_grid-0.12.0 test/test_helper.rb
magic_grid-0.11.1 test/test_helper.rb
magic_grid-0.11.0 test/test_helper.rb
magic_grid-0.10.4 test/test_helper.rb
magic_grid-0.10.3 test/test_helper.rb
magic_grid-0.10.2 test/test_helper.rb
magic_grid-0.10.1 test/test_helper.rb
magic_grid-0.10.0 test/test_helper.rb