Sha256: eaf948a454a2aeb710bd6de5aa76152db108fa0f6b218d35afab6cb9ed68e6a7
Contents?: true
Size: 1.15 KB
Versions: 10
Compression:
Stored size: 1.15 KB
Contents
# encoding: utf-8 require 'helper' class TestLoremUA < Test::Unit::TestCase include DeterministicHelper SENTENCE_MATCHER = /\A[а-яА-ЯіїєґІЇЄҐ’\-\s\.\!\?,]+\z/ WORDS_MATCHER = /\A[а-яА-ЯіїєґІЇЄҐ’\-\s]+\z/ WORD_MATCHER = /\A[а-яА-ЯіїєґІЇЄҐ’\-]+\z/ assert_methods_are_deterministic( FFaker::LoremUA, :paragraph, :sentence, :words, :word ) def setup @tester = FFaker::LoremUA end def test_word assert_match(WORD_MATCHER, @tester.word) end def test_words @tester.words(10).each do |word| assert_match(WORD_MATCHER, word) end assert_match(WORDS_MATCHER, @tester.words.join(' ')) end def test_sentence assert_match(SENTENCE_MATCHER, @tester.sentence(20)) assert_match(SENTENCE_MATCHER, @tester.sentence(4)) end def test_sentences @tester.sentences(10).each do |sentence| assert_match(SENTENCE_MATCHER, sentence) end end def test_paragraph assert_match(SENTENCE_MATCHER, @tester.paragraph) end def test_paragraphs @tester.paragraphs.each do |paragraph| assert_match(SENTENCE_MATCHER, paragraph) end end end
Version data entries
10 entries across 10 versions & 1 rubygems