Sha256: 87a3b5ae97e46d7ae5d1f5d28a99be12f0a897edc9fa6e33db79f8349ce4d015

Contents?: true

Size: 877 Bytes

Versions: 10

Compression:

Stored size: 877 Bytes

Contents

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

require 'bundler/setup'
require 'rails'
require 'rails/test_help'
require 'sass/rails'

Rails.backtrace_cleaner.remove_silencers!

# If developing against local dependencies, this code will ensure they get picked up
# in the project fixtures that have their own bundle environment
$gem_options = {}
possible_dev_dependencies = %w(sass-rails sass rails actionpack railties sprockets journey sprockets-rails activerecord-deprecated_finders)
Bundler.load.specs.each do |s|
  if possible_dev_dependencies.include?(s.name)
     gem_path = s.full_gem_path
     gem_options = { version: s.version}
     gem_options[:path] = gem_path if File.exists?("#{gem_path}/#{s.name}.gemspec")
     $gem_options[s.name] = gem_options
  end
end

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

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/sass-rails-4.0.5/test/test_helper.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/sass-rails-4.0.5/test/test_helper.rb
sass-rails-4.0.5 test/test_helper.rb
sass-rails-4.0.4 test/test_helper.rb
sass-rails-5.0.0.beta1 test/test_helper.rb
sass-rails-4.0.3 test/test_helper.rb
sass-rails-4.0.2 test/test_helper.rb
sass-rails-4.0.1 test/test_helper.rb
sass-rails-4.0.0 test/test_helper.rb
sass-rails-4.0.0.rc2 test/test_helper.rb