# encoding: utf-8 require 'helper' class TestBaconIpsum < Test::Unit::TestCase def test_paragraph assert_match /1\+|[ a-z]+/i, Faker::BaconIpsum.paragraph end def test_sentence assert_match /1\+|[ a-z]+/i, Faker::BaconIpsum.sentence end def test_paragraphs assert_match /1\+|[ a-z]+/i, Faker::BaconIpsum.paragraphs.join(" ") end def test_sentences assert_match /1\+|[ a-z]+/i, Faker::BaconIpsum.sentences.join(" ") end def test_words assert_match /1\+|[ a-z]+/i, Faker::BaconIpsum.words.join(" ") end def test_word assert_match /1\+|[a-z]+/i, Faker::BaconIpsum.word end end