diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-30 15:57:21 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-30 15:57:21 +0000 |
commit | 05d53e1fa51b1286388179515b1e154590855321 (patch) | |
tree | f5f94ea85c401115095574b718487deb92d3e3e9 | |
parent | a60788aa5ac70d6c49c3fe1f285f780133d50c3e (diff) | |
download | redmine-05d53e1fa51b1286388179515b1e154590855321.tar.gz redmine-05d53e1fa51b1286388179515b1e154590855321.zip |
remove trailing white-spaces from test/functional/calendars_controller_test.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6822 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/calendars_controller_test.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index bb12316c7..84b886d08 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -9,7 +9,7 @@ class CalendarsControllerTest < ActionController::TestCase assert_template 'calendar' assert_not_nil assigns(:calendar) end - + def test_cross_project_calendar get :show assert_response :success @@ -20,19 +20,19 @@ class CalendarsControllerTest < ActionController::TestCase context "GET :show" do should "run custom queries" do @query = Query.generate_default!(:is_public => true) - + get :show, :query_id => @query.id assert_response :success end - + end - + def test_week_number_calculation Setting.start_of_week = 7 - + get :show, :month => '1', :year => '2010' assert_response :success - + assert_tag :tag => 'tr', :descendant => {:tag => 'td', :attributes => {:class => 'week-number'}, :content => '53'}, |