##// END OF EJS Templates
add missing fixtures to CalendarsControllerTest...
add missing fixtures to CalendarsControllerTest Tests fail randomly. <pre> 1) Error: CalendarsControllerTest#test_cross_project_calendar: ActionView::Template::Error: undefined method `name' for nil:NilClass app/helpers/issues_helper.rb:57:in `render_issue_tooltip' app/views/common/_calendar.html.erb:17:in `block in _app_views_common__calendar_html_erb__4084073314711523042_57686480' app/views/common/_calendar.html.erb:12:in `each' app/views/common/_calendar.html.erb:12:in `_app_views_common__calendar_html_erb__4084073314711523042_57686480' app/views/calendars/show.html.erb:30:in `_app_views_calendars_show_html_erb___1639405444546230501_53808060' test/functional/calendars_controller_test.rb:44:in `test_cross_project_calendar' </pre> git-svn-id: http://svn.redmine.org/redmine/trunk@13503 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13100:2d1866d966d9
r13121:b63123ac1e52
Show More
development.rb
21 lines | 793 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 # In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 config.cache_classes = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Do not eager load code on boot.
config.eager_load = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 # Show full error reports and disable caching
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 config.consider_all_requests_local = true
config.action_controller.perform_caching = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Disable delivery errors
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 config.action_mailer.raise_delivery_errors = false
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 # Print deprecation notices to stderr and the Rails logger.
Toshi MARUYAMA
add stderr to config.active_support.deprecation in test and dev env...
r12165 config.active_support.deprecation = [:stderr, :log]
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 end