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 +4 -4
- data/Changelog.md +4 -0
- data/REFERENCE.md +7 -0
- data/ffaker.gemspec +6 -1
- data/lib/ffaker.rb +1 -0
- data/lib/ffaker/address_nl.rb +1 -1
- data/lib/ffaker/code.rb +6 -6
- data/lib/ffaker/company_ja.rb +1 -1
- data/lib/ffaker/education.rb +4 -8
- data/lib/ffaker/education_cn.rb +3 -6
- data/lib/ffaker/identification_in.rb +15 -0
- data/lib/ffaker/identification_tw.rb +1 -1
- data/lib/ffaker/name_mx.rb +2 -2
- data/lib/ffaker/product.rb +1 -1
- data/lib/ffaker/string.rb +1 -1
- data/lib/version.rb +1 -1
- data/test/test_address_nl.rb +1 -1
- data/test/test_identification_in.rb +20 -0
- metadata +161 -156
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 800b385497dda7cec86f5f0fd0e68e00b1ec21fdd54ff8f108611324c8524b79
|
4
|
+
data.tar.gz: c610c15433314b85031ee0439453a6763898dcc6e35bbd9f5d2718c9deb39b51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81027d7497eeb5cce4de6efceeb6ea04b2a8ea8e686276ad673c138719c245fbd78beb6bfebba3170f06e3b06b18c8e4a38c9ebcf6e7f057bf14694e109b90b5
|
7
|
+
data.tar.gz: 5e2aedf94a70b756769e68c267f3d92b2c19264195d354475dcfd188487f5942b4c0c44f150d5576499a86962b641357c14ccfdb70332d3980fee549f8b1900d
|
data/Changelog.md
CHANGED
data/REFERENCE.md
CHANGED
@@ -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 |
|
data/ffaker.gemspec
CHANGED
@@ -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-
|
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'
|
data/lib/ffaker.rb
CHANGED
@@ -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'
|
data/lib/ffaker/address_nl.rb
CHANGED
data/lib/ffaker/code.rb
CHANGED
@@ -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
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
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
|
|
data/lib/ffaker/company_ja.rb
CHANGED
data/lib/ffaker/education.rb
CHANGED
@@ -39,14 +39,10 @@ module FFaker
|
|
39
39
|
|
40
40
|
def school
|
41
41
|
case rand(0..4)
|
42
|
-
when 0, 1 then
|
43
|
-
|
44
|
-
when
|
45
|
-
|
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
|
data/lib/ffaker/education_cn.rb
CHANGED
@@ -28,12 +28,9 @@ module FFaker
|
|
28
28
|
|
29
29
|
def school
|
30
30
|
case rand(0..2)
|
31
|
-
when 0 then
|
32
|
-
|
33
|
-
when
|
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
|
data/lib/ffaker/name_mx.rb
CHANGED
@@ -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
|
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
|
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}"
|
data/lib/ffaker/product.rb
CHANGED
@@ -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)
|
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
|
data/lib/ffaker/string.rb
CHANGED
data/lib/version.rb
CHANGED
data/test/test_address_nl.rb
CHANGED
@@ -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.
|
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-
|
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/
|
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/
|
801
|
-
- test/
|
802
|
-
- test/
|
803
|
-
- test/
|
804
|
-
- test/
|
805
|
-
- test/
|
806
|
-
- test/
|
807
|
-
- test/
|
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/
|
813
|
-
- test/
|
814
|
-
- test/
|
815
|
-
- test/
|
816
|
-
- test/
|
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/
|
827
|
-
- test/
|
828
|
-
- test/
|
829
|
-
- test/
|
830
|
-
- test/
|
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/
|
838
|
-
- test/
|
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/
|
851
|
-
- test/
|
852
|
-
- test/
|
853
|
-
- test/
|
854
|
-
- test/
|
855
|
-
- test/
|
856
|
-
- test/
|
857
|
-
- test/
|
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/
|
860
|
-
- test/
|
861
|
-
- test/
|
862
|
-
- test/
|
863
|
-
- test/
|
864
|
-
- test/
|
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/
|
868
|
-
- test/
|
869
|
-
- test/
|
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/
|
876
|
-
- test/
|
877
|
-
- test/
|
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/
|
884
|
-
- test/
|
885
|
-
- test/
|
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/
|
888
|
-
- test/
|
889
|
-
- test/
|
890
|
-
- test/
|
891
|
-
- test/
|
892
|
-
- test/
|
893
|
-
- test/
|
894
|
-
- test/
|
895
|
-
- test/
|
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/
|
900
|
-
- test/
|
901
|
-
- test/
|
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/
|
904
|
-
- test/
|
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/
|
907
|
-
- test/
|
908
|
-
- test/
|
909
|
-
- test/
|
910
|
-
- test/
|
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/
|
913
|
-
- test/
|
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/
|
925
|
-
- test/
|
926
|
-
- test/
|
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/
|
937
|
-
- test/
|
938
|
-
- test/
|
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/
|
945
|
-
- test/
|
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/
|
948
|
-
- test/
|
949
|
-
- test/
|
950
|
-
- test/
|
951
|
-
- test/
|
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/
|
954
|
-
- test/
|
955
|
-
- test/
|
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
|