Sha256: 79f0051b196792c9e45ee5bc4e0d472bad860e85afaa5528c39893d6af36b78f

Contents?: true

Size: 956 Bytes

Versions: 8

Compression:

Stored size: 956 Bytes

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

# 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 }

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

8 entries across 8 versions & 1 rubygems

Version Path
stateful_link-0.0.9 spec/spec_helper.rb
stateful_link-0.0.8 spec/spec_helper.rb
stateful_link-0.0.7 spec/spec_helper.rb
stateful_link-0.0.6 spec/spec_helper.rb
stateful_link-0.0.5 spec/spec_helper.rb
stateful_link-0.0.4 spec/spec_helper.rb
stateful_link-0.0.3 spec/spec_helper.rb
stateful_link-0.0.2 spec/spec_helper.rb