Sha256: b59d862ecc3004c2be470e9d2798a39a27f43ac08eab167878d2085f9d34847a

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 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"
require "with_model"

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
jruby = RUBY_PLATFORM =~ /\bjava\b/
adapter = jruby ? "jdbcsqlite3" : "sqlite3"

# WithModel requires ActiveRecord::Base.connection to be established.
# If ActiveRecord already has a connection, as in a Rails app, this is unnecessary.
ActiveRecord::Base.establish_connection(:adapter => adapter, :database => ":memory:")
# 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
  config.extend WithModel 

  # == Mock Framework
  config.mock_with :rspec
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
customize-0.0.8 spec/spec_helper.rb
customize-0.0.7 spec/spec_helper.rb
customize-0.0.6 spec/spec_helper.rb
customize-0.0.5 spec/spec_helper.rb
customize-0.0.4 spec/spec_helper.rb
customize-0.0.3 spec/spec_helper.rb
customize-0.0.2 spec/spec_helper.rb
customize-0.0.1 spec/spec_helper.rb