Sha256: 822bfbe45dfcd6f40e2251aecf7192fba820cb5dd7443342db21654634de34ad
Contents?: true
Size: 1.28 KB
Versions: 122
Compression:
Stored size: 1.28 KB
Contents
# Configure Rails Envinronment ENV["RAILS_ENV"] = "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require "rails/test_help" require "rspec/rails" ActionMailer::Base.delivery_method = :test ActionMailer::Base.perform_deliveries = true ActionMailer::Base.default_url_options[:host] = "test.com" Rails.backtrace_cleaner.remove_silencers! # Configure capybara for integration testing require "capybara/rails" Capybara.default_driver = :rack_test Capybara.default_selector = :css ActiveRecord::Migration.verbose = false # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # Load Factories require 'factory_girl' if (Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.8.0')) base_path = File.join(Gem::Specification.find_by_name('social_stream-base').full_gem_path, 'spec') else base_path = File.join(Gem::GemPathSearcher.new.find('social_stream-base').full_gem_path, 'spec') end [ base_path, File.dirname(__FILE__) ].each do |path| Dir["#{path}/factories/*.rb"].each {|f| require f} end =begin RSpec.configure do |config| # Remove this line if you don't want RSpec's should and should_not # methods or matchers require 'rspec/expectations' config.include RSpec::Matchers # == Mock Framework config.mock_with :rspec end =end
Version data entries
122 entries across 122 versions & 4 rubygems