Sha256: 804b6c220941ac098f894b4ef30b4489381f83e126381aaf3c47728846d6006d

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

require_relative 'helper'

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

  POLISH_WORD_MATCHER = /\A[A-Ża-ż\s]+\z/.freeze
  POLISH_SENTENCE_MATCHER = /\A[A-Ża-ż\s.!?,]+\z/.freeze

  assert_methods_are_deterministic(
    FFakerTW::LoremPL,
    :character, :characters, :word, :words,
    :sentence, :sentences, :paragraph, :paragraphs
  )

  def setup
    @tester = FFakerTW::LoremPL
  end

  def test_word
    assert_match(POLISH_WORD_MATCHER, @tester.word)
  end

  def test_words
    @tester.words(10).each do |word|
      assert_match(POLISH_WORD_MATCHER, word)
    end
  end

  def test_sentence
    assert_match(POLISH_SENTENCE_MATCHER, @tester.sentence(20))
    assert_match(POLISH_SENTENCE_MATCHER, @tester.sentence(4))
  end

  def test_sentences
    @tester.sentences(10).each do |sentence|
      assert_match(POLISH_SENTENCE_MATCHER, sentence)
    end
  end

  def test_paragraph
    assert_match(POLISH_SENTENCE_MATCHER, @tester.paragraph)
  end

  def test_paragraphs
    @tester.paragraphs.each do |paragraph|
      assert_match(POLISH_SENTENCE_MATCHER, paragraph)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffakerTW-0.1.0 test/test_lorem_pl.rb