# File lib/Borges/TestCase/HtmlBuilderTest.rb, line 265
  def test_table_headings
    html = "<table><tr><th>1</th><th>2</th></tr></table>"
    assert_body_renders(html) do |r|
      r.table do
        r.table_headings "1", "2"
      end
    end
  end