Sha256: 1a59d60713584b754e70ccbbc7c3f2e9a9d0c4084960b17da0c091f7ac47c640
Contents?: true
Size: 539 Bytes
Versions: 10
Compression:
Stored size: 539 Bytes
Contents
# encoding: utf-8 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
10 entries across 10 versions & 1 rubygems