Sha256: 28ca983ddf70085f835e026b50740698eb04d658794ede6fa4b565055bbf3297

Contents?: true

Size: 760 Bytes

Versions: 31

Compression:

Stored size: 760 Bytes

Contents

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



ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"




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 }

Version data entries

31 entries across 31 versions & 3 rubygems

Version Path
wicked-1.0.2 test/test_helper.rb
wicked-1.0.1 test/test_helper.rb
wicked-1.0.0 test/test_helper.rb
wicked-0.6.1 test/test_helper.rb
wicked-0.6.0 test/test_helper.rb
wicked-0.5.0 test/test_helper.rb
wicked-0.4.0 test/test_helper.rb
sextant-0.2.1 test/test_helper.rb
sextant-0.2.0 test/test_helper.rb
wicked-0.3.4 test/test_helper.rb
wicked-0.3.3 test/test_helper.rb
wicked-0.3.2 test/test_helper.rb
wicked-0.3.1 test/test_helper.rb
wicked-0.3.0 test/test_helper.rb
wicked-0.2.0 test/test_helper.rb
wicked-0.1.6 test/test_helper.rb
sextant-0.1.3 test/test_helper.rb
sextant-0.1.2 test/test_helper.rb
sextant-0.1.1 test/test_helper.rb
sextant-0.1.0 test/test_helper.rb