Sha256: 70604a71403d267863f07f18383717aaed099b8ba6b469e29ac75c34058df579
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true require_relative 'helper' class TestLoremCN < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::LoremCN, :paragraph, :paragraphs, :sentence, :sentences, :word, :words ) def test_paragraph assert_greater_than_or_equal_to FFaker::LoremCN.paragraph.length, 3 * 4 * 2 end def test_sentence assert_greater_than_or_equal_to FFaker::LoremCN.sentence.length, 4 * 2 end def test_paragraphs assert_greater_than_or_equal_to FFaker::LoremCN.paragraphs.length, 2 end def test_paragraphs_is_not_a_string_representation_of_an_array assert !/[\[\]]+/.match([FFaker::LoremCN.paragraphs].flatten.join(' ')) end def test_paragraphs_is_an_array assert FFaker::LoremCN.paragraphs.instance_of?(Array) end def test_sentences assert_greater_than_or_equal_to FFaker::LoremCN.sentences.length, 2 end def test_sentences_is_an_array assert FFaker::LoremCN.sentences.instance_of?(Array) end def test_sentences_via_to_s_produces_string_terminated_with_period string = FFaker::LoremCN.sentences.to_s assert string.instance_of?(String) assert string =~ /。$/ end def test_words assert_greater_than_or_equal_to FFaker::LoremCN.words.length, 2 end def test_word assert_greater_than_or_equal_to FFaker::LoremCN.word.length, 1 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.23.0 | test/test_lorem_cn.rb |
ffaker-2.22.0 | test/test_lorem_cn.rb |