diff options
Diffstat (limited to 'config/environments/test.rb')
| -rw-r--r-- | config/environments/test.rb | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/config/environments/test.rb b/config/environments/test.rb index 255803abc..5fb3b1475 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -2,7 +2,7 @@ Rails.application.configure do    # Settings specified here will take precedence over those in config/application.rb.    config.eager_load = false -   +    # The test environment is used exclusively to run your application's    # test suite. You never need to work with it otherwise. Remember that    # your test database is "scratch space" for the test suite and is wiped @@ -38,36 +38,36 @@ Rails.application.configure do    # Raises error for missing translations    # config.action_view.raise_on_missing_translations = true -   +    # Specific theme for each company    # AFIMB -  config.company_name = "afimb"   +  config.company_name = "afimb"    config.company_theme = "#61970b" # AFIMB color -  config.company_contact = "http://www.chouette.mobi/contact-support/" +  config.company_contact = "http://www.chouette.mobi/club-utilisateurs/contact-support/"    config.accept_user_creation = true -   +    # CITYWAY    # config.company_name = "cityway"    # config.company_theme = "#32adb0"    # config.company_contact = "http://www.cityway.fr/contact/?rub_code=14"    # config.accept_user_creation = false -   +    # file to data for demo    config.demo_data = "tmp/demo.zip" -   +    # link to validation specification pages -  config.validation_spec = "http://www.chouette.mobi/neptune-validation/v20/" +  config.validation_spec = "http://www.chouette.mobi/neptune-validation/v21/"    config.action_mailer.default_url_options = { :host => 'localhost:3000' } -   +    # Configure the e-mail address which will be shown in Devise::Maile    config.mailer_sender = "appli@chouette.mobi" -  config.action_mailer.delivery_method = :sendmail  +  config.action_mailer.delivery_method = :sendmail    # change to true to allow email to be sent during development    config.action_mailer.perform_deliveries = false    config.action_mailer.raise_delivery_errors = false -  config.action_mailer.default :charset => "utf-8"   -   +  config.action_mailer.default :charset => "utf-8" +    config.i18n.available_locales = [:fr, :en]  end | 
