Sha256: eea86dde79a4048a188e9906bf80f3dc23252fc838b5236af76707a89e8ac14b

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

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

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
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 migrations
# db_path = File.expand_path("../dummy/db/test.sqlite3/", __FILE__)
# `rm #{db_path}` if File.exists?(db_path)
# 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

3 entries across 3 versions & 1 rubygems

Version Path
houdini-0.3.2 spec/spec_helper.rb
houdini-0.3.1 spec/spec_helper.rb
houdini-0.3.0 spec/spec_helper.rb