Sha256: 010a7ea2507caa198c52123cd0f78520fd3a5bd61cbf529217d8950d55b9fee6

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

require_relative 'helper'

class TestLoremBR < Test::Unit::TestCase
  include DeterministicHelper

  assert_methods_are_deterministic(
    FFaker::LoremBR,
    :paragraph, :sentence, :phrase, :paragraphs, :sentences, :phrases, :words, :word, :characters
  )

  CHARACTERS = /\A[A-zÀ-ü0-9]+\z/i 
  WORD = /\A[A-zÀ-ü-]+\z/i
  WORDS = /[ A-zÀ-ü-.]+/i

  def test_paragraph
    assert_match(WORDS, FFaker::LoremBR.paragraph)
  end

  def test_sentence
    assert_match(WORDS, FFaker::LoremBR.sentence)
    assert_nothing_thrown do
      100.times { FFaker::LoremBR.sentence 0 }
    end
  end

  def test_phrase
    assert_match(WORDS, FFaker::LoremBR.phrase)
  end

  def test_paragraphs
    assert_match(WORDS, FFaker::LoremBR.paragraphs.join(' '))
  end

  def test_sentences
    assert_match(WORDS, FFaker::LoremBR.sentences.join(' '))
  end

  def test_phrases
    assert_match(WORDS, FFaker::LoremBR.phrases.join(' '))
  end

  def test_words
    assert_match(WORDS, FFaker::LoremBR.words.join(' '))
  end

  def test_word
    assert_match(WORD, FFaker::LoremBR.word)
  end

  def test_characters
    assert_match(CHARACTERS, FFaker::LoremBR.characters)
    assert FFaker::LoremBR.characters.length == 255
    assert FFaker::LoremBR.characters(10).length == 10
    assert FFaker::LoremBR.characters(-1) == ''
  end

  def test_word_collection_uniqueness
    assert_equal(FFaker::Lorem::WORDS, FFaker::Lorem::WORDS.uniq)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ffaker-2.21.0 test/test_lorem_br.rb
ffaker-2.20.0 test/test_lorem_br.rb
ffaker-2.19.0 test/test_lorem_br.rb