Sha256: e591ac79c93498ba54fbacd2f938422172eba117210a76f6a64ffb92d8b31c2f

Contents?: true

Size: 615 Bytes

Versions: 1

Compression:

Stored size: 615 Bytes

Contents

# frozen_string_literal: true

require_relative 'helper'

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

  assert_methods_are_deterministic(FFakerTW::EducationCN, :degree, :major, :location, :school)

  def setup
    @tester = FFakerTW::EducationCN
  end

  def test_degree
    assert @tester.degree.match(/[\u4e00-\u9fa5]{4,}/)
  end

  def test_major
    assert @tester.major.match(/[\u4e00-\u9fa5]{2,}/)
  end

  def test_location
    assert @tester.location.match(/[\u4e00-\u9fa5]{2,}/)
  end

  def test_school
    assert @tester.school.match(/[\u4e00-\u9fa5]{4,}/)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffakerTW-0.1.0 test/test_education_cn.rb