Sha256: 83bd8b47a7987949fbc01413ea86a52941ff35140b73dcdb0b8d8bd7a0d104f3
Contents?: true
Size: 1.78 KB
Versions: 10
Compression:
Stored size: 1.78 KB
Contents
# encoding: utf-8 require '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 @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 @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 @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
Version data entries
10 entries across 10 versions & 1 rubygems