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) content_tag_for :ol do |ol| items.times do ol << content_tag_for(:li, paragraph(2)) end end end |