Sha256: 3e160be6804b3ae659a1b8cadc2f34556cf3d92538350adc0b6b9cd77bdc607c
Contents?: true
Size: 551 Bytes
Versions: 7
Compression:
Stored size: 551 Bytes
Contents
# frozen_string_literal: true require 'helper' class TestFakerNameKR < Test::Unit::TestCase include DeterministicHelper assert_methods_are_deterministic( FFaker::NameKR, :name, :last_name, :name_with_space ) def setup @tester = FFaker::NameKR end def test_name assert_match(/\A[가-힣]{2,}\z/, @tester.name) end def test_last_first assert_match(/\A[가-힣]{2,}\z/, @tester.last_first) end def test_name_with_space assert_match(/\A[가-힣]{1,2} [가-힣]{2,}\z/, @tester.name_with_space) end end
Version data entries
7 entries across 7 versions & 1 rubygems