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