aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/actionpack/test/hello_xml_world.builder
blob: c496fb4160233b889e71e1641d5a706722726078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
xml.html do
  xml.head do
    xml.title "Hello World"
  end

  xml.body do
    xml.p "abes"
    xml.p "monks"
    xml.p "wiseguys"
  end
end