Sha256: 0aa431fdf5079d9b70a2a6569db021a55f8ae735c13f91ae4821591f9c294b47
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
# frozen_string_literal: true require_relative 'helper' class TestLoremJA < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFakerTW::LoremJA, :character, :characters, :word, :words, :sentence, :sentences, :paragraph, :paragraphs ) def setup @subject = FFakerTW::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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffakerTW-0.1.0 | test/test_lorem_ja.rb |