Merged r9814 from trunk

fix test_user_index of activities controller test fails at Japanese morning and afternoon.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.0-stable@9818 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-06-11 06:56:11 +00:00
parent 67057ea3e9
commit df05edff3d
1 changed files with 5 additions and 1 deletions

View File

@ -73,6 +73,7 @@ class ActivitiesControllerTest < ActionController::TestCase
end
def test_user_index
@request.session[:user_id] = 1
get :index, :user_id => 2
assert_response :success
assert_template 'index'
@ -80,8 +81,11 @@ class ActivitiesControllerTest < ActionController::TestCase
assert_select 'h2 a[href=/users/2]', :text => 'John Smith'
i1 = Issue.find(1)
d1 = User.find(1).time_to_date(i1.created_on)
assert_tag :tag => "h3",
:content => /#{3.day.ago.to_date.day}/,
:content => /#{d1.day}/,
:sibling => { :tag => "dl",
:child => { :tag => "dt",
:attributes => { :class => /issue/ },