Sha256: 1984cef4de92abab65709961c8ac8617ab461671bcb4f8cafe617ace5cdc3ab6

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

require 'helper'

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

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

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

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

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

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

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

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

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

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

  def test_characters
    assert_match(/[a-z0-9]+/, FFaker::Lorem.characters)
    assert FFaker::Lorem.characters.length == 255
    assert FFaker::Lorem.characters(10).length == 10
    assert FFaker::Lorem.characters(-1) == ''
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ffaker-2.17.0 test/test_lorem.rb
ffaker-2.16.0 test/test_lorem.rb
ffaker-2.15.0 test/test_lorem.rb
ffaker-2.14.0 test/test_lorem.rb
ffaker-2.13.0 test/test_lorem.rb
ffaker-2.12.0 test/test_lorem.rb