Sha256: a49bad12f5b2048fa07879d1735a3b95acb8705018a3a105312a36f712f898f0
Contents?: true
Size: 773 Bytes
Versions: 14
Compression:
Stored size: 773 Bytes
Contents
# encoding: utf-8 require 'helper' class TestLoremARAR < Test::Unit::TestCase def test_paragraph assert_match /[ a-z]+/, Faker::LoremAR.paragraph end def test_sentence assert_match /[ a-z]+/, Faker::LoremAR.sentence end def test_phrase assert_match /[ a-z]+/, Faker::LoremAR.phrase end def test_paragraphs assert_match /[^a-zA-Z0-9]+/, Faker::LoremAR.paragraphs.join(" ") end def test_sentences assert_match /[^a-zA-Z0-9]+/, Faker::LoremAR.sentences.join(" ") end def test_phrases assert_match /[^a-zA-Z0-9]+/, Faker::LoremAR.phrases.join(" ") end def test_words assert_match /[^a-zA-Z0-9]+/, Faker::LoremAR.words.join(" ") end def test_word assert_match /[^a-zA-Z0-9]+/, Faker::LoremAR.word end end
Version data entries
14 entries across 14 versions & 3 rubygems