Sha256: 45496143a3fb312c6409b4c3d9bf66bb5900fa2b0d8cbfdd3a58e674c1c25625

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

require_relative 'helper'

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

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

  def test_paragraph
    assert_match(/[ a-z]+/, FFaker::LoremIT.paragraph)
  end

  def test_sentence
    assert_match(/[ a-z]+/, FFaker::LoremIT.sentence)
    assert_nothing_thrown do
      100.times { FFaker::LoremIT.sentence 0 }
    end
  end

  def test_phrase
    assert_match(/[ a-z]+/, FFaker::LoremIT.phrase)
  end

  def test_paragraphs
    assert_match(/[ a-z]+/, FFaker::LoremIT.paragraphs.join(' '))
  end

  def test_sentences
    assert_match(/[ a-z]+/, FFaker::LoremIT.sentences.join(' '))
  end

  def test_phrases
    assert_match(/[ a-z]+/, FFaker::LoremIT.phrases.join(' '))
  end

  def test_words
    assert_match(/[ a-z]+/, FFaker::LoremIT.words.join(' '))
  end

  def test_word
    assert_match(/[a-z]+/, FFaker::LoremIT.word)
  end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ffaker-2.23.0 test/test_lorem_it.rb
ffaker-2.22.0 test/test_lorem_it.rb
ffaker-2.21.0 test/test_lorem_it.rb
ffaker-2.20.0 test/test_lorem_it.rb
ffaker-2.19.0 test/test_lorem_it.rb