##// END OF EJS Templates
Added documentation about the session_path. #3968...
Added documentation about the session_path. #3968 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3785 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3618:36c82ecc1f0d
r3671:69d9600f48d8
Show More
calendars_controller_test.rb
20 lines | 417 B | text/x-ruby | RubyLexer
/ test / functional / calendars_controller_test.rb
require 'test_helper'
class CalendarsControllerTest < ActionController::TestCase
fixtures :all
def test_calendar
get :show, :project_id => 1
assert_response :success
assert_template 'calendar'
assert_not_nil assigns(:calendar)
end
def test_cross_project_calendar
get :show
assert_response :success
assert_template 'calendar'
assert_not_nil assigns(:calendar)
end
end