Sha256: 3c00e2d4ab373a181eae5a99f5c9eaf62bc474a2fa091e8f215a40d7fb687a78

Contents?: true

Size: 787 Bytes

Versions: 5

Compression:

Stored size: 787 Bytes

Contents

# frozen_string_literal: true

require_relative 'helper'

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

  assert_methods_are_deterministic(
    FFaker::Education,
    :degree_short, :degree, :major,
    :school_name, :school_generic_name, :school
  )

  def setup
    @tester = FFaker::Education
  end

  def test_degree_short
    assert @tester.degree_short.match(/.+ in .+/)
  end

  def test_degree
    assert @tester.degree.match(/.+ in .+/)
  end

  def test_major
    assert @tester.major.match(/.+ .+/)
  end

  def test_school_name
    assert @tester.school_name.match(/.+/)
  end

  def test_school_generic_name
    assert @tester.school_generic_name.match(/.+/)
  end

  def test_school
    assert @tester.school.match(/.+ .+( .+)?/)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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