Method: FFaker::HTMLIpsum#ol_short

Defined in:
lib/ffaker/html_ipsum.rb

#ol_short(items = 3) ⇒ Object



50
51
52
53
54
55
56
# File 'lib/ffaker/html_ipsum.rb', line 50

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