mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
add version calendar functional test
git-svn-id: http://svn.redmine.org/redmine/trunk@20320 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user