# File lib/Borges/TestCase/HtmlBuilderTest.rb, line 218
  def test_list_do
    html = "<ul><li><b>1</b></li><li><b>2</b></li></ul>"
    assert_body_renders(html) do |r|
      r.list_do([1, 2]) do |item|
        r.bold item
      end
    end
  end