##// END OF EJS Templates
Calculate the correct week number for weeks starting at any date. #4857...
Calculate the correct week number for weeks starting at any date. #4857 http://en.wikipedia.org/wiki/ISO_week Contributed by Holger Just git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3789 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3618:36c82ecc1f0d
r3675:b2e903ff7c7e
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