module FFaker::HTMLIpsum

def ul_short(items = 3)

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