Method: FFaker::HTMLIpsum#ul_long

Defined in:
lib/ffaker/html_ipsum.rb

#ul_long(items = 3) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/ffaker/html_ipsum.rb', line 42

def ul_long(items = 3)
   :ul do |ul|
    items.times do
      ul << (:li, paragraph(2))
    end
  end
end