From 0991be35600833304accc468942337128c068954 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 9 Nov 2020 13:25:35 +0000 Subject: [PATCH] add version calendar functional test git-svn-id: http://svn.redmine.org/redmine/trunk@20320 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/calendars_controller_test.rb | 22 +++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index 95a214a7f..3e8ddafe6 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -33,7 +33,8 @@ class CalendarsControllerTest < Redmine::ControllerTest :issue_categories, :enumerations, :queries, - :users, :email_addresses + :users, :email_addresses, + :versions def test_show # Ensure that an issue to which a user is assigned is in the current @@ -103,6 +104,25 @@ class CalendarsControllerTest < Redmine::ControllerTest end end + def test_show_version + travel_to versions(:versions_002).effective_date + + get(:show, :params => {:project_id => 1}) + assert_response :success + + assert_select 'table.cal' do + assert_select 'tr' do + assert_select 'td' do + assert_select( + 'span.icon.icon-package' + ) do + assert_select 'a[href=?]', '/versions/2', :text => '1.0' + end + end + end + end + end + def test_show_should_run_custom_queries @query = IssueQuery.create!(:name => 'Calendar Query', :visibility => IssueQuery::VISIBILITY_PUBLIC) get( -- 2.39.5