Method: FFaker::HTMLIpsum#ul_short

Defined in:
lib/ffaker/html_ipsum.rb

#ul_short(items = 3) ⇒ Object



34
35
36
37
38
39
40
# File 'lib/ffaker/html_ipsum.rb', line 34

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