Sha256: 2b5c269a38c41dd26d1dbb3b6d7abceb1e51665a05f46d2aab981d4e0aea8c91
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 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 # FIXME orm ActiveRecord::Migration.verbose = false # Run any available migration ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__) # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # Load Factories require 'factory_girl' Dir["#{File.dirname(__FILE__)}/factories/*.rb"].each {|f| require f} 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
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
social_stream-0.3.2 | spec/spec_helper.rb |
social_stream-0.3.1 | spec/spec_helper.rb |
social_stream-0.3.0 | spec/spec_helper.rb |
social_stream-0.2.3 | spec/spec_helper.rb |