1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# frozen_string_literal: true
require_relative 'helper'
class TestLoremKR < Test::Unit::TestCase
include DeterministicHelper
KOREAN_SENTENCE_MATCHER = /\A[ .가-힣]+\z/
KOREAN_WORDS_MATCHER = /\A[ 가-힣]+\z/
KOREAN_WORD_MATCHER = /\A[가-힣]+\z/
assert_methods_are_deterministic(
FFaker::LoremKR,
:paragraph, :paragraphs, :sentence, :sentences,
:phrase, :phrases, :word, :words
)
def setup
@tester = FFaker::LoremKR
end
def test_paragraph
assert_match(KOREAN_SENTENCE_MATCHER, @tester.paragraph)
end
def test_sentence
assert_match(KOREAN_SENTENCE_MATCHER, @tester.sentence)
assert_nothing_thrown do
100.times { @tester.sentence 0 }
end
end
def test_phrase
assert_match(KOREAN_SENTENCE_MATCHER, @tester.phrase)
end
def test_paragraphs
assert_match(KOREAN_SENTENCE_MATCHER, @tester.paragraphs.join(' '))
end
def test_sentences
assert_match(KOREAN_SENTENCE_MATCHER, @tester.sentences.join(' '))
end
def test_phrases
assert_match(KOREAN_SENTENCE_MATCHER, @tester.phrases.join(' '))
end
def test_words
assert_match(KOREAN_WORDS_MATCHER, @tester.words.join(' '))
end
def test_word
assert_match(KOREAN_WORD_MATCHER, @tester.word)
end
end
|