Sha256: 83c0ef2d939533189b78dba119f3a2eb229e98cb9359a4a522064be291865178
Contents?: true
Size: 611 Bytes
Versions: 5
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true require_relative 'helper' class TestFakerEducationCN < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic(FFaker::EducationCN, :degree, :major, :location, :school) def setup @tester = FFaker::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
5 entries across 5 versions & 1 rubygems