Method: FFaker::HTMLIpsum#ol_long

Defined in:
lib/ffaker/html_ipsum.rb

#ol_long(items = 3) ⇒ Object



58
59
60
61
62
63
64
# File 'lib/ffaker/html_ipsum.rb', line 58

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