mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
6b5f2a0854
Fallback to older rails I18n behaviour Silence deprecation warnings, for now Added code climate test reporter Created CI deployment task Added *all* the badges
23 lines
602 B
Ruby
23 lines
602 B
Ruby
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require 'codeclimate-test-reporter'
|
|
require 'simplecov'
|
|
CodeClimate::TestReporter.start
|
|
SimpleCov.start 'rails'
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
require 'rspec/rails'
|
|
require 'capybara/rspec'
|
|
require 'capybara/poltergeist'
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
|
|
|
Capybara.javascript_driver = :poltergeist
|
|
|
|
RSpec.configure do |config|
|
|
config.include FactoryGirl::Syntax::Methods
|
|
|
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
config.use_transactional_fixtures = true
|
|
config.order = "random"
|
|
end
|