File: test_ffaker.rb

package info (click to toggle)
ruby-ffaker 2.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,776 kB
  • sloc: ruby: 12,788; makefile: 8; sh: 1
file content (41 lines) | stat: -rw-r--r-- 1,094 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

require_relative 'helper'

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

  def test_version
    assert FFaker::VERSION.is_a?(String)
  end

  def test_numerify
    assert FFaker.numerify('###').match(/\d{3}/)
    assert_deterministic { FFaker.numerify('###') }
  end

  def test_numerify_with_array
    assert FFaker.numerify(['###', '###']).match(/\d{3}/)
    assert_deterministic { FFaker.numerify(['###', '###']) }
  end

  def test_letterify
    assert FFaker.letterify('???').match(/[a-z]{3}/)
    assert_deterministic { FFaker.letterify('???') }
  end

  def test_letterify_with_array
    assert FFaker.letterify(['???', '???']).match(/[a-z]{3}/)
    assert_deterministic { FFaker.letterify(['???', '???']) }
  end

  def test_bothify
    assert FFaker.bothify('???###').match(/[a-z]{3}\d{3}/)
    assert_deterministic { FFaker.bothify('???###') }
  end

  def test_bothify_with_array
    assert FFaker.bothify(['???###', '???###']).match(/[a-z]{3}\d{3}/)
    assert_deterministic { FFaker.bothify(['???###', '???###']) }
  end
end