ffaker 2.15.0 → 2.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc2b63628581ea883c017e605877a39bf214d021b3646fdf743a1019de94482d
4
- data.tar.gz: 381ea6af08e8efadd6c98e759881b2428fb9c93917ca0e906f70872876172f7d
3
+ metadata.gz: 800b385497dda7cec86f5f0fd0e68e00b1ec21fdd54ff8f108611324c8524b79
4
+ data.tar.gz: c610c15433314b85031ee0439453a6763898dcc6e35bbd9f5d2718c9deb39b51
5
5
  SHA512:
6
- metadata.gz: fa290391c027dadb421c9bc23e0582cecfedf821d6a16f29c72f5f11b3e29dc0a5f8db67656d1195ff4cca4cd52dbbe8c83f263cf427be7e1ccffc990df5b17a
7
- data.tar.gz: 5908dd19aaab75ff494b59a9e7f79443b6bc9e825257bbc1417302ef2671a468c7eb8ed32955f4b7c9ff700a42509af13356daecc8d9d737bf03924f6c1f27bc
6
+ metadata.gz: 81027d7497eeb5cce4de6efceeb6ea04b2a8ea8e686276ad673c138719c245fbd78beb6bfebba3170f06e3b06b18c8e4a38c9ebcf6e7f057bf14694e109b90b5
7
+ data.tar.gz: 5e2aedf94a70b756769e68c267f3d92b2c19264195d354475dcfd188487f5942b4c0c44f150d5576499a86962b641357c14ccfdb70332d3980fee549f8b1900d
@@ -2,6 +2,10 @@
2
2
 
3
3
  - Add your change HERE
4
4
 
5
+ ## 2.16.0
6
+ - Add IdentificationIN [@nigelgomesot]
7
+ - Improved NL zipcode generation [@gerard76]
8
+
5
9
  ## 2.15.0
6
10
  - Add `IdentificationTW` [@pominx]
7
11
  - Add `CompanyJA` [@ktroutner]
@@ -71,6 +71,7 @@
71
71
  * [FFaker::IdentificationES](#ffakeridentificationes)
72
72
  * [FFaker::IdentificationESCL](#ffakeridentificationescl)
73
73
  * [FFaker::IdentificationESCO](#ffakeridentificationesco)
74
+ * [FFaker::IdentificationIN](#ffakeridentificationin)
74
75
  * [FFaker::IdentificationKr](#ffakeridentificationkr)
75
76
  * [FFaker::IdentificationMX](#ffakeridentificationmx)
76
77
  * [FFaker::IdentificationPL](#ffakeridentificationpl)
@@ -1216,6 +1217,12 @@
1216
1217
  | `gender` | Mujer, Mujer, Hombre |
1217
1218
  | `id` | 2778228197782, 49397620594, 3992006541162 |
1218
1219
 
1220
+ ## FFaker::IdentificationIN
1221
+
1222
+ | Method | Example |
1223
+ | ------ | ------- |
1224
+ | `aadhaar` | 770376350842, 829743403424 |
1225
+
1219
1226
  ## FFaker::IdentificationKr
1220
1227
 
1221
1228
  | Method | Example |
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
 
12
12
  s.name = 'ffaker'
13
13
  s.version = FFaker::VERSION
14
- s.date = '2020-05-24'
14
+ s.date = '2020-07-26'
15
15
  s.required_ruby_version = '>= 2.4'
16
16
 
17
17
  s.license = 'MIT'
@@ -46,6 +46,11 @@ Gem::Specification.new do |s|
46
46
 
47
47
  s.test_files = Dir['test/**/*']
48
48
 
49
+ s.metadata = {
50
+ 'changelog_uri' => 'https://github.com/ffaker/ffaker/blob/master/Changelog.md',
51
+ 'documentation_uri' => 'https://github.com/ffaker/ffaker/blob/master/REFERENCE.md'
52
+ }
53
+
49
54
  s.add_development_dependency 'rake', '~> 13.0'
50
55
  s.add_development_dependency 'rubocop'
51
56
  s.add_development_dependency 'test-unit'
@@ -103,6 +103,7 @@ module FFaker
103
103
  autoload :IdentificationES, 'ffaker/identification_es'
104
104
  autoload :IdentificationESCL, 'ffaker/identification_es_cl'
105
105
  autoload :IdentificationESCO, 'ffaker/identification_es_co'
106
+ autoload :IdentificationIN, 'ffaker/identification_in'
106
107
  autoload :IdentificationKr, 'ffaker/identification_kr'
107
108
  autoload :IdentificationMX, 'ffaker/identification_mx'
108
109
  autoload :IdentificationPL, 'ffaker/identification_pl'
@@ -10,7 +10,7 @@ module FFaker
10
10
  extend self
11
11
 
12
12
  def postal_code
13
- FFaker::String.from_regexp(/[1-9]\d{3} [A-Z]{2}/)
13
+ FFaker::String.from_regexp(/[1-9]\d{3} [A-RT-Z][A-Z]/)
14
14
  end
15
15
 
16
16
  def zip_code
@@ -10,12 +10,12 @@ module FFaker
10
10
  base_npi = rand(100_000_000..max).to_s
11
11
 
12
12
  summed_digits = base_npi
13
- .chars
14
- .each_with_index
15
- .map { |n, i| (i.even? ? n.to_i * 2 : n).to_s }
16
- .join
17
- .chars
18
- .inject(0) { |sum, digit| sum + digit.to_i }
13
+ .chars
14
+ .each_with_index
15
+ .map { |n, i| (i.even? ? n.to_i * 2 : n).to_s }
16
+ .join
17
+ .chars
18
+ .inject(0) { |sum, digit| sum + digit.to_i }
19
19
 
20
20
  npi_checksum = (10 - (24 + summed_digits) % 10).to_s.chars.last
21
21
 
@@ -7,7 +7,7 @@ module FFaker
7
7
 
8
8
  TYPES = %w[株式会社 有限会社].freeze
9
9
  DETAILED_TYPES = %w[ホールディングス 建設 商業 書店 不動産 銀行 証券].freeze
10
- POSITIONS = %w[会長 社長 部長 課長 係長 社員 契約社員 派遣社員 アルバイト インターン]
10
+ POSITIONS = %w[会長 社長 部長 課長 係長 社員 契約社員 派遣社員 アルバイト インターン].freeze
11
11
 
12
12
  def name
13
13
  case rand(0..2)
@@ -39,14 +39,10 @@ module FFaker
39
39
 
40
40
  def school
41
41
  case rand(0..4)
42
- when 0, 1 then
43
- "#{school_name} #{fetch_sample(SCHOOL_TYPE)}"
44
- when 2 then
45
- "#{school_generic_name} #{fetch_sample(SCHOOL_ADJ)} #{fetch_sample(SCHOOL_TYPE)}"
46
- when 3 then
47
- "#{fetch_sample(SCHOOL_UNI)} of #{school_generic_name}"
48
- when 4 then
49
- "#{school_generic_name} #{fetch_sample(SCHOOL_TYPE)} of #{fetch_sample(MAJOR_NOUN)}"
42
+ when 0, 1 then "#{school_name} #{fetch_sample(SCHOOL_TYPE)}"
43
+ when 2 then "#{school_generic_name} #{fetch_sample(SCHOOL_ADJ)} #{fetch_sample(SCHOOL_TYPE)}"
44
+ when 3 then "#{fetch_sample(SCHOOL_UNI)} of #{school_generic_name}"
45
+ when 4 then "#{school_generic_name} #{fetch_sample(SCHOOL_TYPE)} of #{fetch_sample(MAJOR_NOUN)}"
50
46
  end
51
47
  end
52
48
  end
@@ -28,12 +28,9 @@ module FFaker
28
28
 
29
29
  def school
30
30
  case rand(0..2)
31
- when 0 then
32
- "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}"
33
- when 1 then
34
- "#{location}#{fetch_sample(SCHOOL_UNI)}"
35
- when 2 then
36
- "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}#{fetch_sample(CITY)}分校"
31
+ when 0 then "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}"
32
+ when 1 then "#{location}#{fetch_sample(SCHOOL_UNI)}"
33
+ when 2 then "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}#{fetch_sample(CITY)}分校"
37
34
  end
38
35
  end
39
36
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FFaker
4
+ module IdentificationIN
5
+ extend ModuleUtils
6
+ extend self
7
+
8
+ AADHAAR_FORMAT = ['############'].freeze
9
+
10
+ # REF: https://en.wikipedia.org/wiki/Aadhaar
11
+ def aadhaar
12
+ FFaker.numerify(AADHAAR_FORMAT)
13
+ end
14
+ end
15
+ end
@@ -13,7 +13,7 @@ module FFaker
13
13
  letter = FFaker.letterify('?')
14
14
  code = AREA_CODE[letter.to_sym]
15
15
  gender = fetch_sample([1, 2])
16
- serial = FFaker.numerify("#######")
16
+ serial = FFaker.numerify('#######')
17
17
  a, b, c, d, e, f, g, h, i, j = "#{code}#{gender}#{serial}".split(//).map(&:to_i)
18
18
 
19
19
  checksum = (9 * a + b + 2 * c + 3 * d + 4 * e + 5 * f + 6 * g + 7 * h + 8 * i + 9 * j) % 10
@@ -26,7 +26,7 @@ module FFaker
26
26
  # Full name with prefix according to gender, possibly with middle_name
27
27
  def full_name_prefix(gender = :any)
28
28
  case gender
29
- when :any then
29
+ when :any
30
30
  case rand(0..8)
31
31
  when 0, 3, 6, 8 then "#{female_prefix} #{female_name} #{paternal_last_names}"
32
32
  else "#{male_prefix} #{male_name} #{paternal_last_names}"
@@ -40,7 +40,7 @@ module FFaker
40
40
  # Full name with no prefix according to gender, possibly with middle_name
41
41
  def full_name_no_prefix(gender = :any)
42
42
  case gender
43
- when :any then
43
+ when :any
44
44
  case rand(0..8)
45
45
  when 0, 3, 6, 8 then "#{female_name} #{paternal_last_names}"
46
46
  else "#{male_name} #{paternal_last_names}"
@@ -14,7 +14,7 @@ module FFaker
14
14
  def brand
15
15
  case rand(0..11)
16
16
  when (0..4) then fetch_sample(B1) + fetch_sample(B2)
17
- when (5..10) then
17
+ when (5..10)
18
18
  [
19
19
  fetch_sample(START), fetch_sample(VOWELS), fetch_sample(SUFFIX),
20
20
  rand(0..1).zero? ? fetch_sample(ADDON) : nil
@@ -50,7 +50,7 @@ module FFaker
50
50
  token = tokens.shift
51
51
 
52
52
  case token
53
- when '?' then
53
+ when '?'
54
54
  # TODO: Let ? generate nothing
55
55
  '' # We already printed its target
56
56
  when '+' then
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FFaker
4
- VERSION = '2.15.0'
4
+ VERSION = '2.16.0'
5
5
  end
@@ -23,7 +23,7 @@ class TestAddressNL < Test::Unit::TestCase
23
23
  end
24
24
 
25
25
  def test_zip_code
26
- assert_match(/\A[1-9]\d{3} [A-Z]{2}\z/, @tester.zip_code)
26
+ assert_match(/\A[1-9]\d{3} [A-RT-Z][A-Z]\z/, @tester.zip_code)
27
27
  end
28
28
 
29
29
  def test_street_name
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'helper'
4
+
5
+ class TestIdentificationIN < Test::Unit::TestCase
6
+ include DeterministicHelper
7
+
8
+ assert_methods_are_deterministic(
9
+ FFaker::IdentificationIN,
10
+ :aadhaar
11
+ )
12
+
13
+ def setup
14
+ @tester = FFaker::IdentificationIN
15
+ end
16
+
17
+ def test_aadhaar
18
+ assert_match(/\A\d{12}\z/, @tester.aadhaar)
19
+ end
20
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.15.0
4
+ version: 2.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://github.com/ffaker/ffaker/graphs/contributors
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-05-24 00:00:00.000000000 Z
12
+ date: 2020-07-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -475,6 +475,7 @@ files:
475
475
  - lib/ffaker/identification_es.rb
476
476
  - lib/ffaker/identification_es_cl.rb
477
477
  - lib/ffaker/identification_es_co.rb
478
+ - lib/ffaker/identification_in.rb
478
479
  - lib/ffaker/identification_kr.rb
479
480
  - lib/ffaker/identification_mx.rb
480
481
  - lib/ffaker/identification_pl.rb
@@ -660,6 +661,7 @@ files:
660
661
  - test/test_identification_es.rb
661
662
  - test/test_identification_es_cl.rb
662
663
  - test/test_identification_es_mx.rb
664
+ - test/test_identification_in.rb
663
665
  - test/test_identification_kr.rb
664
666
  - test/test_identification_pl.rb
665
667
  - test/test_identification_tw.rb
@@ -757,7 +759,9 @@ files:
757
759
  homepage: https://github.com/ffaker/ffaker
758
760
  licenses:
759
761
  - MIT
760
- metadata: {}
762
+ metadata:
763
+ changelog_uri: https://github.com/ffaker/ffaker/blob/master/Changelog.md
764
+ documentation_uri: https://github.com/ffaker/ffaker/blob/master/REFERENCE.md
761
765
  post_install_message:
762
766
  rdoc_options:
763
767
  - "--charset=UTF-8"
@@ -779,177 +783,178 @@ signing_key:
779
783
  specification_version: 2
780
784
  summary: Ffaker generates dummy data.
781
785
  test_files:
782
- - test/test_identification.rb
783
- - test/test_identification_es_cl.rb
784
- - test/test_animal.rb
785
- - test/test_name_cs.rb
786
- - test/test_address_da.rb
787
- - test/test_lorem_ja.rb
788
- - test/test_units.rb
789
- - test/test_phone_number_mx.rb
790
- - test/test_units_metric.rb
791
- - test/test_aws.rb
792
- - test/test_products.rb
793
- - test/test_boolean.rb
794
- - test/helper.rb
795
- - test/test_address_nl.rb
796
- - test/test_address_br.rb
797
- - test/test_dizzle_ipsum.rb
798
- - test/test_html_ipsum.rb
786
+ - test/test_name_vn.rb
799
787
  - test/test_address_au.rb
800
- - test/test_sports.rb
801
- - test/test_phone_number_br.rb
802
- - test/test_healthcare_ru.rb
803
- - test/test_bank.rb
804
- - test/test_healthcare_ipsum.rb
805
- - test/test_image.rb
806
- - test/test_identification_br.rb
807
- - test/test_address_us.rb
808
- - test/test_locale.rb
809
- - test/test_food.rb
810
- - test/test_animal_pl.rb
788
+ - test/test_conference.rb
789
+ - test/test_address_ja.rb
790
+ - test/test_address_ch_de.rb
791
+ - test/test_sem_ver.rb
792
+ - test/test_address_sn.rb
793
+ - test/test_name_sn.rb
794
+ - test/test_book.rb
795
+ - test/test_color_ua.rb
811
796
  - test/test_phone_number_tw.rb
812
- - test/test_movie.rb
813
- - test/test_address_ch_fr.rb
814
- - test/test_hipster_ipsum.rb
815
- - test/test_address_uk.rb
816
- - test/test_name_ja.rb
817
- - test/test_gender_ja.rb
818
- - test/test_address_id.rb
819
- - test/test_identification_es_mx.rb
820
- - test/test_bacon_ipsum.rb
821
- - test/test_name_ua.rb
822
- - test/test_name_gr.rb
823
- - test/test_name_ar.rb
824
- - test/test_gender_br.rb
797
+ - test/test_address_fi.rb
798
+ - test/test_address_ua.rb
799
+ - test/test_address_ch_it.rb
800
+ - test/test_module_utils.rb
801
+ - test/test_name_id.rb
825
802
  - test/test_lorem.rb
826
- - test/test_animal_us.rb
827
- - test/test_phone_number_ua.rb
828
- - test/test_music.rb
829
- - test/test_lorem_fr.rb
830
- - test/test_address_mx.rb
831
- - test/test_name_se.rb
832
- - test/test_code.rb
833
- - test/test_lorem_cn.rb
834
- - test/test_tweet.rb
835
- - test/test_company_cn.rb
803
+ - test/test_nato_alphabet.rb
804
+ - test/test_youtube.rb
805
+ - test/test_ssn_mx.rb
806
+ - test/test_cheesy_lingo.rb
807
+ - test/test_phone_number_mx.rb
836
808
  - test/test_venue.rb
837
- - test/test_job_ja.rb
838
- - test/test_vehicle.rb
809
+ - test/test_phone_number_au.rb
810
+ - test/test_name_ru.rb
811
+ - test/test_bacon_ipsum.rb
812
+ - test/test_address_se.rb
813
+ - test/test_address_us.rb
814
+ - test/test_phone_number_sg.rb
839
815
  - test/test_phone_number_fr.rb
840
- - test/test_phone_number_nl.rb
841
- - test/test_array_utils.rb
842
- - test/test_guid.rb
843
- - test/test_name_es.rb
844
- - test/test_job_kr.rb
845
- - test/test_airline.rb
846
- - test/test_gender.rb
847
- - test/test_name_nb.rb
848
816
  - test/test_name_th.rb
849
817
  - test/test_color.rb
850
- - test/test_skill.rb
851
- - test/test_job_br.rb
852
- - test/test_name_cn.rb
853
- - test/test_phone_number.rb
854
- - test/test_address_ua.rb
855
- - test/test_name_sn.rb
856
- - test/test_course_mathematiques.rb
857
- - test/test_name_id.rb
818
+ - test/test_phone_number_de.rb
819
+ - test/test_food.rb
820
+ - test/test_sport_pl.rb
821
+ - test/test_identification_in.rb
822
+ - test/test_address_id.rb
823
+ - test/test_units_metric.rb
824
+ - test/test_lorem_ie.rb
825
+ - test/test_name_th_en.rb
826
+ - test/test_lorem_ua.rb
827
+ - test/test_phone_number_sn.rb
828
+ - test/test_gender_ja.rb
829
+ - test/test_movie.rb
830
+ - test/test_address_fr.rb
831
+ - test/test_name_se.rb
832
+ - test/test_address_kr.rb
833
+ - test/test_units.rb
834
+ - test/test_identification_pl.rb
835
+ - test/test_address_gr.rb
836
+ - test/test_education_cn.rb
837
+ - test/test_education.rb
858
838
  - test/test_name_mx.rb
859
- - test/test_name_fr.rb
860
- - test/test_job_cn.rb
861
- - test/test_name_it.rb
862
- - test/test_phone_number_ru.rb
863
- - test/test_phone_number_da.rb
864
- - test/test_name_da.rb
865
- - test/test_phone_number_kr.rb
839
+ - test/test_color_pl.rb
840
+ - test/test_identification_kr.rb
841
+ - test/test_company_ja.rb
842
+ - test/test_name_es.rb
843
+ - test/test_name_kr.rb
844
+ - test/test_lorem_ja.rb
866
845
  - test/test_time.rb
867
- - test/test_currency.rb
868
- - test/test_lorem_ar.rb
869
- - test/test_company_it.rb
870
- - test/test_units_english.rb
871
- - test/test_ssn.rb
872
- - test/test_cheesy_lingo.rb
873
- - test/test_gender_jp.rb
846
+ - test/test_job_ja.rb
847
+ - test/test_identification_co.rb
848
+ - test/test_music.rb
874
849
  - test/test_animal_cn.rb
875
- - test/test_phone_number_pl.rb
876
- - test/test_address_se.rb
877
- - test/test_book.rb
878
- - test/test_identification_tw.rb
879
- - test/test_filesystem.rb
880
- - test/test_youtube.rb
881
- - test/test_name_ru.rb
850
+ - test/test_name_ph.rb
851
+ - test/test_phone_number_br.rb
852
+ - test/test_name_it.rb
882
853
  - test/test_gender_pl.rb
883
- - test/test_name_tw.rb
884
- - test/test_name_ga.rb
885
- - test/test_unique_utils.rb
854
+ - test/test_array_utils.rb
855
+ - test/test_ssn.rb
856
+ - test/test_job_br.rb
857
+ - test/test_course_mathematiques.rb
858
+ - test/test_name_nb.rb
886
859
  - test/test_geolocation.rb
887
- - test/test_phone_number_sg.rb
888
- - test/test_phone_number_se.rb
889
- - test/test_lorem_kr.rb
890
- - test/test_phone_number_cu.rb
891
- - test/test_address_ru.rb
892
- - test/test_faker.rb
893
- - test/test_conference.rb
894
- - test/test_address_sn.rb
895
- - test/test_address_ch_it.rb
896
- - test/test_gender_id.rb
897
- - test/test_lorem_ua.rb
860
+ - test/test_units_english.rb
861
+ - test/test_name_fr.rb
862
+ - test/test_lorem_ar.rb
863
+ - test/test_phone_number_pl.rb
864
+ - test/test_phone_number_ua.rb
865
+ - test/test_name_da.rb
866
+ - test/test_identification_es_mx.rb
867
+ - test/test_address_ca.rb
868
+ - test/helper.rb
898
869
  - test/test_address_de.rb
899
- - test/test_name_de.rb
900
- - test/test_address_gr.rb
901
- - test/test_job_vn.rb
870
+ - test/test_html_ipsum.rb
871
+ - test/test_name_nl.rb
872
+ - test/test_company_se.rb
873
+ - test/test_name_gr.rb
874
+ - test/test_address_da.rb
875
+ - test/test_name_br.rb
876
+ - test/test_healthcare_ipsum.rb
877
+ - test/test_dizzle_ipsum.rb
878
+ - test/test_hipster_ipsum.rb
879
+ - test/test_currency.rb
880
+ - test/test_ssn_se.rb
881
+ - test/test_phone_number_ru.rb
882
+ - test/test_job_cn.rb
902
883
  - test/test_gender_cn.rb
903
- - test/test_address_kr.rb
904
- - test/test_phone_number_au.rb
884
+ - test/test_address_br.rb
885
+ - test/test_gender.rb
886
+ - test/test_job_vn.rb
887
+ - test/test_aws.rb
888
+ - test/test_boolean.rb
905
889
  - test/test_animal_es.rb
906
- - test/test_identification_kr.rb
907
- - test/test_name.rb
908
- - test/test_lorem_pl.rb
909
- - test/test_lorem_ru.rb
910
- - test/test_name_vn.rb
890
+ - test/test_unique_utils.rb
891
+ - test/test_sports.rb
892
+ - test/test_address_ch.rb
893
+ - test/test_course_philosophie.rb
894
+ - test/test_avatar.rb
895
+ - test/test_name_tw.rb
896
+ - test/test_faker.rb
897
+ - test/test_phone_number_nl.rb
898
+ - test/test_name_de.rb
899
+ - test/test_vehicle.rb
911
900
  - test/test_internet_se.rb
912
- - test/test_address_fr.rb
913
- - test/test_identification_pl.rb
914
- - test/test_name_br.rb
915
- - test/test_phone_number_de.rb
916
- - test/test_name_kr.rb
917
- - test/test_color_ua.rb
918
- - test/test_nato_alphabet.rb
919
- - test/test_address_ja.rb
920
- - test/test_address_ca.rb
921
- - test/test_identification_es.rb
922
- - test/test_job.rb
901
+ - test/test_lorem_ru.rb
902
+ - test/test_string.rb
923
903
  - test/test_internet.rb
924
- - test/test_ssn_se.rb
925
- - test/test_identification_co.rb
926
- - test/test_education_cn.rb
927
- - test/test_company_ja.rb
928
- - test/test_course_philosophie.rb
929
- - test/test_address_pl.rb
930
- - test/test_name_kh.rb
931
- - test/test_education.rb
932
- - test/test_sport_pl.rb
933
- - test/test_address_ch.rb
934
- - test/test_name_ph.rb
904
+ - test/test_airline.rb
905
+ - test/test_gender_kr.rb
906
+ - test/test_name.rb
935
907
  - test/test_job_fr.rb
936
- - test/test_lorem_ie.rb
937
- - test/test_address_in.rb
938
- - test/test_ssn_mx.rb
939
- - test/test_avatar.rb
940
- - test/test_name_pl.rb
941
- - test/test_color_pl.rb
942
- - test/test_address_fi.rb
908
+ - test/test_phone_number_se.rb
909
+ - test/test_address_uk.rb
910
+ - test/test_animal_pl.rb
943
911
  - test/test_phone_number_id.rb
944
- - test/test_name_th_en.rb
945
- - test/test_phone_number_sn.rb
912
+ - test/test_phone_number_cu.rb
913
+ - test/test_job_kr.rb
914
+ - test/test_lorem_cn.rb
915
+ - test/test_phone_number_kr.rb
916
+ - test/test_identification_es.rb
917
+ - test/test_bank.rb
918
+ - test/test_healthcare_ru.rb
919
+ - test/test_address_nl.rb
920
+ - test/test_name_cs.rb
921
+ - test/test_address_ru.rb
922
+ - test/test_identification_br.rb
923
+ - test/test_gender_jp.rb
924
+ - test/test_phone_number_da.rb
925
+ - test/test_products.rb
926
+ - test/test_gender_br.rb
927
+ - test/test_lorem_kr.rb
928
+ - test/test_code.rb
929
+ - test/test_animal.rb
930
+ - test/test_address_in.rb
931
+ - test/test_locale.rb
946
932
  - test/test_company.rb
947
- - test/test_address_ch_de.rb
948
- - test/test_name_nl.rb
949
- - test/test_address.rb
950
- - test/test_sem_ver.rb
951
- - test/test_gender_kr.rb
933
+ - test/test_image.rb
934
+ - test/test_lorem_fr.rb
935
+ - test/test_identification_tw.rb
936
+ - test/test_lorem_pl.rb
937
+ - test/test_name_ua.rb
938
+ - test/test_address_mx.rb
939
+ - test/test_name_kh.rb
940
+ - test/test_address_pl.rb
941
+ - test/test_filesystem.rb
942
+ - test/test_gender_id.rb
943
+ - test/test_job.rb
944
+ - test/test_tweet.rb
945
+ - test/test_guid.rb
952
946
  - test/test_sport_us.rb
953
- - test/test_company_se.rb
954
- - test/test_string.rb
955
- - test/test_module_utils.rb
947
+ - test/test_name_ja.rb
948
+ - test/test_animal_us.rb
949
+ - test/test_address.rb
950
+ - test/test_name_ga.rb
951
+ - test/test_name_ar.rb
952
+ - test/test_company_it.rb
953
+ - test/test_name_pl.rb
954
+ - test/test_identification_es_cl.rb
955
+ - test/test_identification.rb
956
+ - test/test_phone_number.rb
957
+ - test/test_name_cn.rb
958
+ - test/test_company_cn.rb
959
+ - test/test_address_ch_fr.rb
960
+ - test/test_skill.rb