Browse Source

test_page_with_activity fails depending on the current time and zone (#30288).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@18315 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
282ddf0ee8
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      test/functional/my_controller_test.rb

+ 2
- 1
test/functional/my_controller_test.rb View File

@@ -204,6 +204,7 @@ class MyControllerTest < Redmine::ControllerTest
def test_page_with_activity
user = User.find(2)
user.pref.my_page_layout = {'top' => ['activity']}
user.pref.time_zone = 'UTC'
user.pref.save!

get :page
@@ -211,7 +212,7 @@ class MyControllerTest < Redmine::ControllerTest

assert_select 'div#block-activity' do
assert_select 'h3' do
assert_select 'a[href=?]', activity_path(from: Date.current, user_id: user.id), :text => 'Activity'
assert_select 'a[href=?]', activity_path(from: User.current.today, user_id: user.id), :text => 'Activity'
end
assert_select 'div#activity' do
assert_select 'dt', 10

Loading…
Cancel
Save