Sha256: 98acdd6c62cc335d22805c8a2c6b1c0897ded3001aa966037a907ae21dcdc016
Contents?: true
Size: 988 Bytes
Versions: 5
Compression:
Stored size: 988 Bytes
Contents
# frozen_string_literal: true require_relative 'helper' class TestLoremARAR < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::LoremAR, :paragraph, :paragraphs, :sentence, :sentences, :phrase, :phrases, :word, :words ) def test_paragraph assert_match(/[ a-z]+/, FFaker::LoremAR.paragraph) end def test_sentence assert_match(/[ a-z]+/, FFaker::LoremAR.sentence) end def test_phrase assert_match(/[ a-z]+/, FFaker::LoremAR.phrase) end def test_paragraphs assert_match(/[^a-zA-Z0-9]+/, FFaker::LoremAR.paragraphs.join(' ')) end def test_sentences assert_match(/[^a-zA-Z0-9]+/, FFaker::LoremAR.sentences.join(' ')) end def test_phrases assert_match(/[^a-zA-Z0-9]+/, FFaker::LoremAR.phrases.join(' ')) end def test_words assert_match(/[^a-zA-Z0-9]+/, FFaker::LoremAR.words.join(' ')) end def test_word assert_match(/[^a-zA-Z0-9]+/, FFaker::LoremAR.word) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.23.0 | test/test_lorem_ar.rb |
ffaker-2.22.0 | test/test_lorem_ar.rb |
ffaker-2.21.0 | test/test_lorem_ar.rb |
ffaker-2.20.0 | test/test_lorem_ar.rb |
ffaker-2.19.0 | test/test_lorem_ar.rb |