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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
# frozen_string_literal: true
require_relative 'helper'
class TestLoremJA < Test::Unit::TestCase
include DeterministicHelper
assert_methods_are_deterministic(
FFaker::LoremJA,
:character, :characters,
:word, :words,
:sentence, :sentences,
:paragraph, :paragraphs
)
def setup
@subject = FFaker::LoremJA
end
def test_character
assert_equal 1, @subject.character.length
assert_kind_of String, @subject.character
end
def test_characters
assert_equal 20, @subject.characters.length
assert_kind_of String, @subject.characters
end
def test_characters_with_count
assert_equal 30, @subject.characters(30).length
assert_deterministic { @subject.characters(30) }
end
def test_word
assert_greater_than_or_equal_to @subject.word.length, 1
assert_kind_of String, @subject.word
end
def test_words
assert_equal 3, @subject.words.length
assert_kind_of Array, @subject.words
end
def test_words_with_count
assert_equal 10, @subject.words(10).length
assert_deterministic { @subject.words(10) }
end
def test_sentence
assert_greater_than_or_equal_to @subject.sentence.length, 1
end
def test_sentences
assert_equal 3, @subject.sentences.length
assert_kind_of Array, @subject.sentences
end
def test_sentences_with_count
assert_equal 10, @subject.sentences(10).length
assert_deterministic { @subject.sentences(10) }
end
def test_paragraph
assert_greater_than_or_equal_to @subject.paragraph.length, 1
end
def test_paragraphs
assert_equal 3, @subject.paragraphs.length
assert_kind_of Array, @subject.paragraphs
end
def test_paragraphs_with_count
assert_equal 10, @subject.paragraphs(10).length
assert_deterministic { @subject.paragraphs(10) }
end
def test_paragraph_end_with_terminate_character
assert_match(/。$/, @subject.paragraph)
end
end
|