use assert_select instead of assert_tag at versions index sidebar

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11784 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-05-03 11:39:33 +00:00
parent 452c71c9dc
commit 33afeea87a
1 changed files with 6 additions and 6 deletions

View File

@ -37,12 +37,12 @@ class VersionsControllerTest < ActionController::TestCase
assert !assigns(:versions).include?(Version.find(1))
# Context menu on issues
assert_select "script", :text => Regexp.new(Regexp.escape("contextMenuInit('/issues/context_menu')"))
# Links to versions anchors
assert_tag 'a', :attributes => {:href => '#2.0'},
:ancestor => {:tag => 'div', :attributes => {:id => 'sidebar'}}
# Links to completed versions in the sidebar
assert_tag 'a', :attributes => {:href => '/versions/1'},
:ancestor => {:tag => 'div', :attributes => {:id => 'sidebar'}}
assert_select "div#sidebar" do
# Links to versions anchors
assert_select 'a[href=?]', '#2.0'
# Links to completed versions in the sidebar
assert_select 'a[href=?]', '/versions/1'
end
end
def test_index_with_completed_versions