diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-03 16:40:01 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-03 16:40:01 +0000 |
commit | db9be587196b2fdebacaecf54efe70940b006989 (patch) | |
tree | 58afd341788c84eff03de489511dee9f0c8f1e29 /actionpack/test | |
parent | a769b88819ac1ad1d89a1f9138bf1546091d3744 (diff) | |
download | rails-db9be587196b2fdebacaecf54efe70940b006989.tar.gz rails-db9be587196b2fdebacaecf54efe70940b006989.tar.bz2 rails-db9be587196b2fdebacaecf54efe70940b006989.zip |
Cleanup assert_tag :children counting. Closes #2181.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4915 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/test_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb index 58ed819e12..1eda834351 100644 --- a/actionpack/test/controller/test_test.rb +++ b/actionpack/test/controller/test_test.rb @@ -215,6 +215,8 @@ HTML # there is a tag with 2 children assert_tag :children => { :count => 2 } + # in particular, there is a <ul> tag with two children (a nameless pair of <li>s) + assert_tag :tag => 'ul', :children => { :count => 2 } # there is no tag with 4 children assert_no_tag :children => { :count => 4 } end |