Sha256: c65e56859fe7c73db8e3eeaf1542c5d7f7740526d2b3faf59f23345d130f6b70
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
# encoding: utf-8 require 'helper' class TestLorem < Test::Unit::TestCase def test_paragraph assert_match /[ a-z]+/, FFaker::Lorem.paragraph end def test_sentence assert_match /[ a-z]+/, FFaker::Lorem.sentence assert_nothing_thrown do 100.times { FFaker::Lorem.sentence 0 } end end def test_phrase assert_match /[ a-z]+/, FFaker::Lorem.phrase end def test_paragraphs assert_match /[ a-z]+/, FFaker::Lorem.paragraphs.join(" ") end def test_sentences assert_match /[ a-z]+/, FFaker::Lorem.sentences.join(" ") end def test_phrases assert_match /[ a-z]+/, FFaker::Lorem.phrases.join(" ") end def test_words assert_match /[ a-z]+/, FFaker::Lorem.words.join(" ") end def test_word assert_match /[a-z]+/, FFaker::Lorem.word end def test_characters assert_match /[a-z0-9]+/, FFaker::Lorem.characters assert FFaker::Lorem.characters().length == 255 assert FFaker::Lorem.characters(10).length == 10 assert FFaker::Lorem.characters(-1) == "" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.2.0 | test/test_lorem.rb |
ffaker-2.1.0 | test/test_lorem.rb |
ffaker-2.0.0 | test/test_lorem.rb |