Sha256: d2a6f82b4fd424f7a921a7a885d01c2ae05094a205cd860cde1f50803f43c1ac

Contents?: true

Size: 830 Bytes

Versions: 6

Compression:

Stored size: 830 Bytes

Contents

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

require 'rails'
require "rails/test_help"
require 'sass/rails'
require 'sfl'
require 'mocha'

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)
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

6 entries across 6 versions & 1 rubygems

Version Path
sass-rails-3.1.7 test/test_helper.rb
sass-rails-3.1.6 test/test_helper.rb
sass-rails-3.2.1 test/test_helper.rb
sass-rails-3.1.5 test/test_helper.rb
sass-rails-3.1.5.rc.2 test/test_helper.rb
sass-rails-3.1.5.rc.1 test/test_helper.rb