Sha256: 029b078b1b47f743199f951fadea94ab255d454678e5e9bf509faf1864067cfe

Contents?: true

Size: 999 Bytes

Versions: 6

Compression:

Stored size: 999 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
  config.include JSONBuilder::RSpecHelpers

  # == Mock Framework
  config.mock_with :rspec
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
json_builder-3.0.6 spec/spec_helper.rb
json_builder-3.0.4 spec/spec_helper.rb
json_builder-3.0.3 spec/spec_helper.rb
json_builder-3.0.2 spec/spec_helper.rb
json_builder-3.0.1 spec/spec_helper.rb
json_builder-3.0.0 spec/spec_helper.rb