Sha256: 8596f049d76533eda0651120ac792317795c43bb78f91975a24f41546d758573

Contents?: true

Size: 1.12 KB

Versions: 55

Compression:

Stored size: 1.12 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'
base_path = File.join(Gem::GemPathSearcher.new.find('social_stream-base').full_gem_path, 'spec')
[ 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

55 entries across 55 versions & 2 rubygems

Version Path
social_stream-0.10.1 documents/spec/spec_helper.rb
social_stream-0.10.0 documents/spec/spec_helper.rb
social_stream-0.9.7 documents/spec/spec_helper.rb
social_stream-0.9.6 documents/spec/spec_helper.rb
social_stream-0.9.5 documents/spec/spec_helper.rb
social_stream-documents-0.2.8 spec/spec_helper.rb
social_stream-0.9.4 documents/spec/spec_helper.rb
social_stream-documents-0.2.7 spec/spec_helper.rb
social_stream-0.9.3 documents/spec/spec_helper.rb
social_stream-0.9.2 documents/spec/spec_helper.rb
social_stream-documents-0.2.6 spec/spec_helper.rb
social_stream-documents-0.2.5 spec/spec_helper.rb
social_stream-documents-0.2.4 spec/spec_helper.rb
social_stream-documents-0.2.3 spec/spec_helper.rb
social_stream-documents-0.2.0 spec/spec_helper.rb