ffaker 2.17.0 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog.md +10 -0
- data/README.md +6 -4
- data/REFERENCE.md +1317 -1269
- data/Rakefile +3 -3
- data/ffaker.gemspec +3 -3
- data/lib/ffaker.rb +3 -0
- data/lib/ffaker/address_ch.rb +0 -2
- data/lib/ffaker/address_ch_de.rb +0 -2
- data/lib/ffaker/address_ch_fr.rb +0 -2
- data/lib/ffaker/address_ch_it.rb +0 -2
- data/lib/ffaker/address_da.rb +0 -2
- data/lib/ffaker/address_de.rb +0 -2
- data/lib/ffaker/address_fi.rb +0 -2
- data/lib/ffaker/address_fr.rb +0 -2
- data/lib/ffaker/address_gr.rb +0 -2
- data/lib/ffaker/address_id.rb +0 -2
- data/lib/ffaker/address_in.rb +0 -2
- data/lib/ffaker/address_ja.rb +0 -2
- data/lib/ffaker/address_nl.rb +0 -2
- data/lib/ffaker/address_ru.rb +0 -2
- data/lib/ffaker/address_se.rb +0 -2
- data/lib/ffaker/address_sn.rb +0 -2
- data/lib/ffaker/address_ua.rb +0 -2
- data/lib/ffaker/address_uk.rb +0 -2
- data/lib/ffaker/address_us.rb +0 -2
- data/lib/ffaker/animal.rb +1 -1
- data/lib/ffaker/bacon_ipsum.rb +0 -2
- data/lib/ffaker/data/food_pl/diary +14 -0
- data/lib/ffaker/data/food_pl/fermented +13 -0
- data/lib/ffaker/data/food_pl/fruits +34 -0
- data/lib/ffaker/data/food_pl/herbs +20 -0
- data/lib/ffaker/data/food_pl/meats +9 -0
- data/lib/ffaker/data/food_pl/preserves +10 -0
- data/lib/ffaker/data/food_pl/spices +26 -0
- data/lib/ffaker/data/food_pl/vegetables +45 -0
- data/lib/ffaker/data/freedom_ipsum/freedom_words +161 -0
- data/lib/ffaker/data/lorem/words +0 -67
- data/lib/ffaker/data/phone_number_ja/four_disit_area_codes +41 -0
- data/lib/ffaker/data/phone_number_ja/one_disit_area_codes +3 -0
- data/lib/ffaker/data/phone_number_ja/three_disit_area_codes +296 -0
- data/lib/ffaker/data/phone_number_ja/two_disit_area_codes +48 -0
- data/lib/ffaker/dizzle_ipsum.rb +0 -2
- data/lib/ffaker/food_pl.rb +65 -0
- data/lib/ffaker/freedom_ipsum.rb +20 -0
- data/lib/ffaker/healthcare_ipsum.rb +0 -2
- data/lib/ffaker/hipster_ipsum.rb +0 -2
- data/lib/ffaker/identification_es_cl.rb +0 -2
- data/lib/ffaker/identification_es_co.rb +0 -1
- data/lib/ffaker/identification_mx.rb +0 -2
- data/lib/ffaker/image.rb +8 -11
- data/lib/ffaker/internet_se.rb +0 -2
- data/lib/ffaker/lorem_cn.rb +0 -1
- data/lib/ffaker/name_cs.rb +0 -2
- data/lib/ffaker/name_da.rb +0 -2
- data/lib/ffaker/name_de.rb +0 -2
- data/lib/ffaker/name_mx.rb +0 -2
- data/lib/ffaker/name_nb.rb +0 -2
- data/lib/ffaker/name_nl.rb +0 -2
- data/lib/ffaker/name_ph.rb +0 -2
- data/lib/ffaker/name_ru.rb +0 -2
- data/lib/ffaker/name_se.rb +0 -2
- data/lib/ffaker/name_ua.rb +0 -2
- data/lib/ffaker/phone_number_da.rb +0 -1
- data/lib/ffaker/phone_number_ja.rb +88 -0
- data/lib/ffaker/unit_english.rb +0 -2
- data/lib/ffaker/unit_metric.rb +0 -2
- data/lib/version.rb +1 -1
- data/test/helper.rb +3 -3
- data/test/test_bank.rb +2 -3
- data/test/test_food_pl.rb +61 -0
- data/test/test_freedom_ipsum.rb +21 -0
- data/test/test_image.rb +1 -1
- data/test/test_lorem.rb +4 -0
- data/test/test_lorem_fr.rb +9 -7
- data/test/test_phone_number_ja.rb +63 -0
- data/test/test_ssn_se.rb +1 -1
- data/test/test_time.rb +2 -3
- data/test/test_tweet.rb +1 -1
- metadata +177 -155
data/lib/ffaker/unit_metric.rb
CHANGED
data/lib/version.rb
CHANGED
data/test/helper.rb
CHANGED
@@ -45,9 +45,9 @@ module DeterministicHelper
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
def assert_between(got,
|
49
|
-
assert_greater_than_or_equal_to got,
|
50
|
-
public_send "assert_less_than#{'_or_equal_to' unless exclude_end}", got,
|
48
|
+
def assert_between(got, range)
|
49
|
+
assert_greater_than_or_equal_to got, range.begin
|
50
|
+
public_send "assert_less_than#{'_or_equal_to' unless range.exclude_end?}", got, range.end
|
51
51
|
end
|
52
52
|
|
53
53
|
def assert_random(original_block, *args)
|
data/test/test_bank.rb
CHANGED
@@ -33,7 +33,7 @@ class TestBank < Test::Unit::TestCase
|
|
33
33
|
date_today = ::DateTime.now
|
34
34
|
|
35
35
|
assert_random_between(
|
36
|
-
date_today.strftime('%y')
|
36
|
+
date_today.strftime('%y')..date_today.next_year(5).strftime('%y')
|
37
37
|
) do
|
38
38
|
@tester.card_expiry_date.split('/').pop
|
39
39
|
end
|
@@ -41,8 +41,7 @@ class TestBank < Test::Unit::TestCase
|
|
41
41
|
year_range = 4
|
42
42
|
year_latest = 8
|
43
43
|
assert_random_between(
|
44
|
-
date_today.prev_year(year_latest + year_range).strftime('%y')
|
45
|
-
date_today.prev_year(year_latest).strftime('%y')
|
44
|
+
date_today.prev_year(year_latest + year_range).strftime('%y')..date_today.prev_year(year_latest).strftime('%y')
|
46
45
|
) do
|
47
46
|
@tester.card_expiry_date(year_range: year_range, year_latest: year_latest).split('/').pop
|
48
47
|
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'helper'
|
4
|
+
|
5
|
+
class TestFakerFoodPL < Test::Unit::TestCase
|
6
|
+
include DeterministicHelper
|
7
|
+
|
8
|
+
assert_methods_are_deterministic(
|
9
|
+
FFaker::FoodPL,
|
10
|
+
:food, :processed, :unprocessed, :vegetable, :fruit,
|
11
|
+
:meat, :herb, :spice, :fermented, :diary, :preserves
|
12
|
+
)
|
13
|
+
|
14
|
+
def setup
|
15
|
+
@tester = FFaker::FoodPL
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_food
|
19
|
+
assert_match(/\w+/, @tester.food)
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_processed
|
23
|
+
assert_match(/\w+/, @tester.processed)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_unprocessed
|
27
|
+
assert_match(/\w+/, @tester.unprocessed)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_vegetable
|
31
|
+
assert_include(@tester::VEGETABLES, @tester.vegetable)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_fruit
|
35
|
+
assert_include(@tester::FRUITS, @tester.fruit)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_herb
|
39
|
+
assert_include(@tester::HERBS, @tester.herb)
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_spice
|
43
|
+
assert_include(@tester::SPICES, @tester.spice)
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_meat
|
47
|
+
assert_include(@tester::MEATS, @tester.meat)
|
48
|
+
end
|
49
|
+
|
50
|
+
def test_fermented
|
51
|
+
assert_include(@tester::FERMENTED, @tester.fermented)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_diary
|
55
|
+
assert_include(@tester::DIARY, @tester.diary)
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_preserves
|
59
|
+
assert_include(@tester::PRESERVES, @tester.preserves)
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'helper'
|
4
|
+
class TestFreedomIpsum < Test::Unit::TestCase
|
5
|
+
include DeterministicHelper
|
6
|
+
|
7
|
+
assert_methods_are_deterministic(
|
8
|
+
FFaker::FreedomIpsum,
|
9
|
+
:word, :words
|
10
|
+
)
|
11
|
+
|
12
|
+
TEST_REGEX = /[a-z0-9 -]+/i.freeze
|
13
|
+
|
14
|
+
def test_words
|
15
|
+
assert_match(TEST_REGEX, FFaker::FreedomIpsum.words.join(' '))
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_word
|
19
|
+
assert_match(TEST_REGEX, FFaker::FreedomIpsum.word)
|
20
|
+
end
|
21
|
+
end
|
data/test/test_image.rb
CHANGED
data/test/test_lorem.rb
CHANGED
@@ -51,4 +51,8 @@ class TestLorem < Test::Unit::TestCase
|
|
51
51
|
assert FFaker::Lorem.characters(10).length == 10
|
52
52
|
assert FFaker::Lorem.characters(-1) == ''
|
53
53
|
end
|
54
|
+
|
55
|
+
def test_word_collection_uniqueness
|
56
|
+
assert_equal(FFaker::Lorem::WORDS, FFaker::Lorem::WORDS.uniq)
|
57
|
+
end
|
54
58
|
end
|
data/test/test_lorem_fr.rb
CHANGED
@@ -11,17 +11,19 @@ class TestLoremFR < Test::Unit::TestCase
|
|
11
11
|
)
|
12
12
|
|
13
13
|
REGEX = /\A[ -.ÀÂÉÈÊÎÔÚÛàâéèêîôùûa-z]+\z/i.freeze
|
14
|
+
REGEX_WORD = /\A[-ÀÂÉÈÊÎÔÚÛàâéèêîôùûa-z]+\z/i.freeze
|
15
|
+
REGEX_WORDS = /\A[ -ÀÂÉÈÊÎÔÚÛàâéèêîôùûa-z]+\z/i.freeze
|
14
16
|
|
15
17
|
def test_paragraph
|
16
|
-
assert_match(
|
18
|
+
assert_match(REGEX, FFaker::LoremFR.paragraph)
|
17
19
|
end
|
18
20
|
|
19
21
|
def test_sentence
|
20
|
-
assert_match(
|
22
|
+
assert_match(REGEX, FFaker::LoremFR.sentence)
|
21
23
|
end
|
22
24
|
|
23
25
|
def test_phrase
|
24
|
-
assert_match(
|
26
|
+
assert_match(REGEX, FFaker::LoremFR.phrase)
|
25
27
|
end
|
26
28
|
|
27
29
|
def test_paragraphs
|
@@ -29,18 +31,18 @@ class TestLoremFR < Test::Unit::TestCase
|
|
29
31
|
end
|
30
32
|
|
31
33
|
def test_sentences
|
32
|
-
assert_match(
|
34
|
+
assert_match(REGEX, FFaker::LoremFR.sentences.join(' '))
|
33
35
|
end
|
34
36
|
|
35
37
|
def test_phrases
|
36
|
-
assert_match(
|
38
|
+
assert_match(REGEX, FFaker::LoremFR.phrases.join(' '))
|
37
39
|
end
|
38
40
|
|
39
41
|
def test_words
|
40
|
-
assert_match(
|
42
|
+
assert_match(REGEX_WORDS, FFaker::LoremFR.words.join(' '))
|
41
43
|
end
|
42
44
|
|
43
45
|
def test_word
|
44
|
-
assert_match(
|
46
|
+
assert_match(REGEX_WORD, FFaker::LoremFR.word)
|
45
47
|
end
|
46
48
|
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'helper'
|
4
|
+
|
5
|
+
class TestPhoneNumberJA < Test::Unit::TestCase
|
6
|
+
include DeterministicHelper
|
7
|
+
|
8
|
+
assert_methods_are_deterministic(
|
9
|
+
FFaker::PhoneNumberJA,
|
10
|
+
:phone_number, :home_phone_number, :mobile_phone_number,
|
11
|
+
:international_mobile_phone_number, :international_home_phone_number, :international_phone_number,
|
12
|
+
:mobile_prefix, :home_phone_prefix
|
13
|
+
)
|
14
|
+
|
15
|
+
def setup
|
16
|
+
@tester = FFaker::PhoneNumberJA
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_phone_number
|
20
|
+
assert_match(/\A0\d{1,4} \d{1,4} \d{4}\z/, @tester.phone_number)
|
21
|
+
assert_include([12, 13], @tester.phone_number.length)
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_home_phone_number
|
25
|
+
assert_match(/\A0\d{1,4} \d{1,4} \d{4}\z/, @tester.home_phone_number)
|
26
|
+
assert_equal(@tester.home_phone_number.length, 12)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_mobile_phone_number
|
30
|
+
assert_match(/\A0(90|80|70) \d{4} \d{4}\z/, @tester.mobile_phone_number)
|
31
|
+
assert_equal(@tester.mobile_phone_number.length, 13)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_international_phone_number
|
35
|
+
assert_match(/\A\+81 \d{1,4} \d{1,4} \d{4}\z/, @tester.international_phone_number)
|
36
|
+
assert_include([15, 16], @tester.international_phone_number.length)
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_international_home_phone_number
|
40
|
+
assert_match(/\A\+81 \d{1,4} \d{1,4} \d{4}\z/, @tester.international_home_phone_number)
|
41
|
+
assert_equal(@tester.international_home_phone_number.length, 15)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_international_mobile_phone_number
|
45
|
+
assert_match(/\A\+81 (90|80|70) \d{4} \d{4}\z/, @tester.international_mobile_phone_number)
|
46
|
+
assert_equal(@tester.international_mobile_phone_number.length, 16)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_mobile_prefix
|
50
|
+
assert_include(@tester::MOBILE_PHONE_PREFIXES, @tester.mobile_prefix)
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_home_phone_prefix
|
54
|
+
disit = rand(1..4)
|
55
|
+
assert_include(
|
56
|
+
@tester::ONE_DISIT_AREA_CODES +
|
57
|
+
@tester::TWO_DISIT_AREA_CODES +
|
58
|
+
@tester::THREE_DISIT_AREA_CODES +
|
59
|
+
@tester::FOUR_DISIT_AREA_CODES,
|
60
|
+
@tester.home_phone_prefix(disit)
|
61
|
+
)
|
62
|
+
end
|
63
|
+
end
|
data/test/test_ssn_se.rb
CHANGED
@@ -32,7 +32,7 @@ class TestSSNSE < Test::Unit::TestCase
|
|
32
32
|
from = Time.local(1980, 2, 28)
|
33
33
|
to = Time.local(2000, 2, 28)
|
34
34
|
|
35
|
-
assert_random_between(from
|
35
|
+
assert_random_between(from...to) do
|
36
36
|
ssn = FFaker::SSNSE.ssn(from: from, to: to)
|
37
37
|
year = ssn[0..3].to_i
|
38
38
|
month = ssn[4..5].to_i
|
data/test/test_time.rb
CHANGED
@@ -44,8 +44,7 @@ class TestFakerTime < Test::Unit::TestCase
|
|
44
44
|
current_year = ::DateTime.now.year
|
45
45
|
[[0, 0], [1, 1], [2, 4], [8, 6]].each do |year_range, year_latest|
|
46
46
|
assert_random_between(
|
47
|
-
current_year - year_range - year_latest
|
48
|
-
current_year - year_latest
|
47
|
+
(current_year - year_range - year_latest)..(current_year - year_latest)
|
49
48
|
) do
|
50
49
|
@tester.datetime(year_range: year_range, year_latest: year_latest).year
|
51
50
|
end
|
@@ -61,7 +60,7 @@ class TestFakerTime < Test::Unit::TestCase
|
|
61
60
|
from = Time.local(2015, 1, 1)
|
62
61
|
to = Time.local(2016, 1, 1)
|
63
62
|
|
64
|
-
assert_random_between(from
|
63
|
+
assert_random_between(from..to) { @tester.between(from, to) }
|
65
64
|
end
|
66
65
|
|
67
66
|
def test_between_for_string
|
data/test/test_tweet.rb
CHANGED
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.18.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:
|
12
|
+
date: 2021-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -277,6 +277,15 @@ files:
|
|
277
277
|
- lib/ffaker/data/food/herb_spice
|
278
278
|
- lib/ffaker/data/food/meat
|
279
279
|
- lib/ffaker/data/food/vegetable
|
280
|
+
- lib/ffaker/data/food_pl/diary
|
281
|
+
- lib/ffaker/data/food_pl/fermented
|
282
|
+
- lib/ffaker/data/food_pl/fruits
|
283
|
+
- lib/ffaker/data/food_pl/herbs
|
284
|
+
- lib/ffaker/data/food_pl/meats
|
285
|
+
- lib/ffaker/data/food_pl/preserves
|
286
|
+
- lib/ffaker/data/food_pl/spices
|
287
|
+
- lib/ffaker/data/food_pl/vegetables
|
288
|
+
- lib/ffaker/data/freedom_ipsum/freedom_words
|
280
289
|
- lib/ffaker/data/healthcare_ipsum/healthcare_words
|
281
290
|
- lib/ffaker/data/healthcare_ru/doctor_specialization
|
282
291
|
- lib/ffaker/data/hipster_ipsum/hipster_words
|
@@ -424,6 +433,10 @@ files:
|
|
424
433
|
- lib/ffaker/data/phone_number_id/mobile_phone_prefixes
|
425
434
|
- lib/ffaker/data/phone_number_it/home_phone_prefixes
|
426
435
|
- lib/ffaker/data/phone_number_it/mobile_phone_prefixes
|
436
|
+
- lib/ffaker/data/phone_number_ja/four_disit_area_codes
|
437
|
+
- lib/ffaker/data/phone_number_ja/one_disit_area_codes
|
438
|
+
- lib/ffaker/data/phone_number_ja/three_disit_area_codes
|
439
|
+
- lib/ffaker/data/phone_number_ja/two_disit_area_codes
|
427
440
|
- lib/ffaker/data/phone_number_nl/area_codes
|
428
441
|
- lib/ffaker/data/phone_number_ru/home_phone_prefixes
|
429
442
|
- lib/ffaker/data/phone_number_ru/mobile_phone_prefixes
|
@@ -456,6 +469,8 @@ files:
|
|
456
469
|
- lib/ffaker/education_cn.rb
|
457
470
|
- lib/ffaker/filesystem.rb
|
458
471
|
- lib/ffaker/food.rb
|
472
|
+
- lib/ffaker/food_pl.rb
|
473
|
+
- lib/ffaker/freedom_ipsum.rb
|
459
474
|
- lib/ffaker/gender.rb
|
460
475
|
- lib/ffaker/gender_br.rb
|
461
476
|
- lib/ffaker/gender_cn.rb
|
@@ -544,6 +559,7 @@ files:
|
|
544
559
|
- lib/ffaker/phone_number_fr.rb
|
545
560
|
- lib/ffaker/phone_number_id.rb
|
546
561
|
- lib/ffaker/phone_number_it.rb
|
562
|
+
- lib/ffaker/phone_number_ja.rb
|
547
563
|
- lib/ffaker/phone_number_kr.rb
|
548
564
|
- lib/ffaker/phone_number_mx.rb
|
549
565
|
- lib/ffaker/phone_number_nl.rb
|
@@ -641,6 +657,8 @@ files:
|
|
641
657
|
- test/test_ffaker.rb
|
642
658
|
- test/test_filesystem.rb
|
643
659
|
- test/test_food.rb
|
660
|
+
- test/test_food_pl.rb
|
661
|
+
- test/test_freedom_ipsum.rb
|
644
662
|
- test/test_gender.rb
|
645
663
|
- test/test_gender_br.rb
|
646
664
|
- test/test_gender_cn.rb
|
@@ -727,6 +745,7 @@ files:
|
|
727
745
|
- test/test_phone_number_de.rb
|
728
746
|
- test/test_phone_number_fr.rb
|
729
747
|
- test/test_phone_number_id.rb
|
748
|
+
- test/test_phone_number_ja.rb
|
730
749
|
- test/test_phone_number_kr.rb
|
731
750
|
- test/test_phone_number_mx.rb
|
732
751
|
- test/test_phone_number_nl.rb
|
@@ -760,8 +779,8 @@ homepage: https://github.com/ffaker/ffaker
|
|
760
779
|
licenses:
|
761
780
|
- MIT
|
762
781
|
metadata:
|
763
|
-
changelog_uri: https://github.com/ffaker/ffaker/blob/
|
764
|
-
documentation_uri: https://github.com/ffaker/ffaker/blob/
|
782
|
+
changelog_uri: https://github.com/ffaker/ffaker/blob/main/Changelog.md
|
783
|
+
documentation_uri: https://github.com/ffaker/ffaker/blob/main/REFERENCE.md
|
765
784
|
post_install_message:
|
766
785
|
rdoc_options:
|
767
786
|
- "--charset=UTF-8"
|
@@ -783,178 +802,181 @@ signing_key:
|
|
783
802
|
specification_version: 2
|
784
803
|
summary: Ffaker generates dummy data.
|
785
804
|
test_files:
|
786
|
-
- test/test_job_kr.rb
|
787
|
-
- test/test_gender_ja.rb
|
788
|
-
- test/test_job_cn.rb
|
789
|
-
- test/test_identification_br.rb
|
790
|
-
- test/test_bacon_ipsum.rb
|
791
|
-
- test/test_food.rb
|
792
|
-
- test/test_units.rb
|
793
|
-
- test/test_lorem_ie.rb
|
794
|
-
- test/test_address_se.rb
|
795
|
-
- test/test_gender_pl.rb
|
796
|
-
- test/test_color_ua.rb
|
797
|
-
- test/test_company_ja.rb
|
798
|
-
- test/test_conference.rb
|
799
|
-
- test/test_boolean.rb
|
800
|
-
- test/test_ssn_mx.rb
|
801
|
-
- test/test_name_pl.rb
|
802
|
-
- test/test_gender_cn.rb
|
803
|
-
- test/test_name_it.rb
|
804
|
-
- test/test_phone_number_tw.rb
|
805
|
-
- test/test_healthcare_ipsum.rb
|
806
|
-
- test/test_ssn_se.rb
|
807
|
-
- test/test_phone_number_sg.rb
|
808
|
-
- test/test_name_ua.rb
|
809
|
-
- test/test_identification_tw.rb
|
810
805
|
- test/test_tweet.rb
|
811
|
-
- test/
|
812
|
-
- test/
|
813
|
-
- test/
|
814
|
-
- test/
|
815
|
-
- test/test_identification_es.rb
|
816
|
-
- test/test_name_ru.rb
|
817
|
-
- test/test_gender_kr.rb
|
818
|
-
- test/test_youtube.rb
|
819
|
-
- test/test_phone_number_kr.rb
|
806
|
+
- test/test_currency.rb
|
807
|
+
- test/test_ffaker.rb
|
808
|
+
- test/test_internet.rb
|
809
|
+
- test/test_phone_number_ja.rb
|
820
810
|
- test/test_name_cn.rb
|
821
|
-
- test/
|
822
|
-
- test/
|
823
|
-
- test/
|
811
|
+
- test/test_cheesy_lingo.rb
|
812
|
+
- test/test_ssn.rb
|
813
|
+
- test/test_company_se.rb
|
814
|
+
- test/test_venue.rb
|
815
|
+
- test/test_animal_cn.rb
|
816
|
+
- test/test_gender_jp.rb
|
817
|
+
- test/test_sport_us.rb
|
818
|
+
- test/test_course_philosophie.rb
|
819
|
+
- test/test_identification.rb
|
820
|
+
- test/test_name_es.rb
|
821
|
+
- test/test_company_ja.rb
|
822
|
+
- test/test_youtube.rb
|
823
|
+
- test/test_company_cn.rb
|
824
824
|
- test/test_name_th_en.rb
|
825
|
-
- test/
|
826
|
-
- test/
|
825
|
+
- test/test_animal_pl.rb
|
826
|
+
- test/test_internet_se.rb
|
827
|
+
- test/test_address_ua.rb
|
828
|
+
- test/test_name_ja.rb
|
829
|
+
- test/test_phone_number.rb
|
830
|
+
- test/test_module_utils.rb
|
831
|
+
- test/test_address_mx.rb
|
832
|
+
- test/test_name_it.rb
|
833
|
+
- test/test_name_vn.rb
|
834
|
+
- test/helper.rb
|
827
835
|
- test/test_phone_number_cu.rb
|
828
|
-
- test/
|
829
|
-
- test/
|
830
|
-
- test/
|
831
|
-
- test/
|
836
|
+
- test/test_name_br.rb
|
837
|
+
- test/test_string.rb
|
838
|
+
- test/test_name.rb
|
839
|
+
- test/test_gender_id.rb
|
840
|
+
- test/test_address_ch_de.rb
|
841
|
+
- test/test_job.rb
|
842
|
+
- test/test_name_de.rb
|
843
|
+
- test/test_address_id.rb
|
844
|
+
- test/test_array_utils.rb
|
845
|
+
- test/test_gender_cn.rb
|
846
|
+
- test/test_healthcare_ru.rb
|
847
|
+
- test/test_lorem.rb
|
848
|
+
- test/test_image.rb
|
849
|
+
- test/test_products.rb
|
850
|
+
- test/test_name_ph.rb
|
851
|
+
- test/test_phone_number_pl.rb
|
852
|
+
- test/test_phone_number_ru.rb
|
853
|
+
- test/test_identification_es_mx.rb
|
854
|
+
- test/test_name_fr.rb
|
855
|
+
- test/test_address_ca.rb
|
856
|
+
- test/test_phone_number_se.rb
|
857
|
+
- test/test_address_fi.rb
|
858
|
+
- test/test_phone_number_au.rb
|
859
|
+
- test/test_aws.rb
|
860
|
+
- test/test_address_au.rb
|
861
|
+
- test/test_address_sn.rb
|
862
|
+
- test/test_company.rb
|
863
|
+
- test/test_phone_number_de.rb
|
832
864
|
- test/test_movie.rb
|
833
|
-
- test/
|
834
|
-
- test/
|
865
|
+
- test/test_address_ch_it.rb
|
866
|
+
- test/test_identification_es.rb
|
867
|
+
- test/test_job_vn.rb
|
868
|
+
- test/test_name_ar.rb
|
869
|
+
- test/test_lorem_ja.rb
|
870
|
+
- test/test_geolocation.rb
|
871
|
+
- test/test_animal.rb
|
872
|
+
- test/test_gender.rb
|
873
|
+
- test/test_phone_number_mx.rb
|
835
874
|
- test/test_identification_pl.rb
|
836
875
|
- test/test_locale.rb
|
837
|
-
- test/
|
876
|
+
- test/test_gender_pl.rb
|
877
|
+
- test/test_education.rb
|
878
|
+
- test/test_phone_number_tw.rb
|
879
|
+
- test/test_identification_br.rb
|
838
880
|
- test/test_name_nb.rb
|
839
|
-
- test/
|
881
|
+
- test/test_units_metric.rb
|
882
|
+
- test/test_phone_number_nl.rb
|
883
|
+
- test/test_ssn_se.rb
|
884
|
+
- test/test_lorem_ru.rb
|
885
|
+
- test/test_name_gr.rb
|
840
886
|
- test/test_phone_number_sn.rb
|
841
|
-
- test/
|
842
|
-
- test/
|
887
|
+
- test/test_identification_in.rb
|
888
|
+
- test/test_lorem_ua.rb
|
889
|
+
- test/test_phone_number_fr.rb
|
843
890
|
- test/test_name_id.rb
|
844
|
-
- test/
|
845
|
-
- test/
|
846
|
-
- test/test_name_se.rb
|
847
|
-
- test/test_lorem_ru.rb
|
848
|
-
- test/test_animal.rb
|
849
|
-
- test/test_company_se.rb
|
850
|
-
- test/test_address_ch_fr.rb
|
851
|
-
- test/test_education.rb
|
852
|
-
- test/test_airline.rb
|
853
|
-
- test/test_address_au.rb
|
854
|
-
- test/test_company_cn.rb
|
855
|
-
- test/test_sport_us.rb
|
856
|
-
- test/test_time.rb
|
857
|
-
- test/test_venue.rb
|
891
|
+
- test/test_lorem_ie.rb
|
892
|
+
- test/test_gender_br.rb
|
858
893
|
- test/test_name_mx.rb
|
859
|
-
- test/
|
894
|
+
- test/test_avatar.rb
|
860
895
|
- test/test_phone_number_da.rb
|
861
|
-
- test/
|
862
|
-
- test/
|
863
|
-
- test/
|
864
|
-
- test/
|
865
|
-
- test/
|
866
|
-
- test/
|
867
|
-
- test/test_address_da.rb
|
868
|
-
- test/test_address.rb
|
896
|
+
- test/test_lorem_fr.rb
|
897
|
+
- test/test_address_kr.rb
|
898
|
+
- test/test_identification_tw.rb
|
899
|
+
- test/test_address_ja.rb
|
900
|
+
- test/test_food.rb
|
901
|
+
- test/test_food_pl.rb
|
869
902
|
- test/test_animal_es.rb
|
870
|
-
- test/test_address_pl.rb
|
871
903
|
- test/test_phone_number_br.rb
|
872
|
-
- test/
|
873
|
-
- test/
|
874
|
-
- test/
|
875
|
-
- test/
|
876
|
-
- test/
|
877
|
-
- test/test_address_ch.rb
|
878
|
-
- test/test_phone_number_nl.rb
|
879
|
-
- test/test_lorem_fr.rb
|
904
|
+
- test/test_phone_number_ua.rb
|
905
|
+
- test/test_identification_es_cl.rb
|
906
|
+
- test/test_job_kr.rb
|
907
|
+
- test/test_sport_pl.rb
|
908
|
+
- test/test_lorem_pl.rb
|
880
909
|
- test/test_dizzle_ipsum.rb
|
881
|
-
- test/
|
882
|
-
- test/
|
883
|
-
- test/
|
884
|
-
- test/
|
885
|
-
- test/
|
910
|
+
- test/test_gender_kr.rb
|
911
|
+
- test/test_ssn_mx.rb
|
912
|
+
- test/test_address_ru.rb
|
913
|
+
- test/test_units.rb
|
914
|
+
- test/test_address_uk.rb
|
915
|
+
- test/test_address_us.rb
|
916
|
+
- test/test_bank.rb
|
917
|
+
- test/test_name_sn.rb
|
918
|
+
- test/test_conference.rb
|
919
|
+
- test/test_boolean.rb
|
920
|
+
- test/test_animal_us.rb
|
921
|
+
- test/test_color.rb
|
922
|
+
- test/test_address_nl.rb
|
886
923
|
- test/test_address_gr.rb
|
887
|
-
- test/
|
888
|
-
- test/
|
924
|
+
- test/test_hipster_ipsum.rb
|
925
|
+
- test/test_book.rb
|
926
|
+
- test/test_address_se.rb
|
927
|
+
- test/test_time.rb
|
928
|
+
- test/test_job_fr.rb
|
929
|
+
- test/test_address.rb
|
930
|
+
- test/test_lorem_ar.rb
|
931
|
+
- test/test_sem_ver.rb
|
932
|
+
- test/test_units_english.rb
|
933
|
+
- test/test_guid.rb
|
889
934
|
- test/test_nato_alphabet.rb
|
935
|
+
- test/test_unique_utils.rb
|
936
|
+
- test/test_phone_number_sg.rb
|
937
|
+
- test/test_address_da.rb
|
938
|
+
- test/test_company_it.rb
|
939
|
+
- test/test_job_br.rb
|
940
|
+
- test/test_address_ch_fr.rb
|
941
|
+
- test/test_skill.rb
|
942
|
+
- test/test_freedom_ipsum.rb
|
943
|
+
- test/test_color_pl.rb
|
944
|
+
- test/test_address_in.rb
|
945
|
+
- test/test_address_de.rb
|
946
|
+
- test/test_music.rb
|
947
|
+
- test/test_color_ua.rb
|
948
|
+
- test/test_name_pl.rb
|
949
|
+
- test/test_sports.rb
|
890
950
|
- test/test_name_tw.rb
|
891
|
-
- test/
|
892
|
-
- test/
|
951
|
+
- test/test_filesystem.rb
|
952
|
+
- test/test_job_cn.rb
|
953
|
+
- test/test_code.rb
|
954
|
+
- test/test_name_ua.rb
|
955
|
+
- test/test_address_fr.rb
|
956
|
+
- test/test_education_cn.rb
|
893
957
|
- test/test_job_ja.rb
|
894
|
-
- test/
|
895
|
-
- test/
|
896
|
-
- test/test_address_ua.rb
|
897
|
-
- test/test_phone_number_pl.rb
|
898
|
-
- test/test_animal_us.rb
|
899
|
-
- test/test_healthcare_ru.rb
|
900
|
-
- test/test_name_gr.rb
|
901
|
-
- test/test_lorem_cn.rb
|
902
|
-
- test/test_address_fi.rb
|
903
|
-
- test/test_identification_es_mx.rb
|
904
|
-
- test/test_name_de.rb
|
905
|
-
- test/test_color.rb
|
958
|
+
- test/test_identification_kr.rb
|
959
|
+
- test/test_bacon_ipsum.rb
|
906
960
|
- test/test_identification_co.rb
|
907
|
-
- test/
|
908
|
-
- test/test_identification_in.rb
|
909
|
-
- test/test_bank.rb
|
910
|
-
- test/test_name_cs.rb
|
911
|
-
- test/test_education_cn.rb
|
912
|
-
- test/test_address_kr.rb
|
913
|
-
- test/test_ffaker.rb
|
914
|
-
- test/test_address_uk.rb
|
915
|
-
- test/test_lorem.rb
|
916
|
-
- test/test_currency.rb
|
917
|
-
- test/test_phone_number_mx.rb
|
918
|
-
- test/test_avatar.rb
|
919
|
-
- test/test_hipster_ipsum.rb
|
920
|
-
- test/test_name_ja.rb
|
921
|
-
- test/test_phone_number_au.rb
|
922
|
-
- test/test_lorem_ja.rb
|
923
|
-
- test/test_image.rb
|
924
|
-
- test/test_vehicle.rb
|
925
|
-
- test/test_gender_id.rb
|
926
|
-
- test/test_animal_pl.rb
|
927
|
-
- test/test_name_kr.rb
|
928
|
-
- test/helper.rb
|
929
|
-
- test/test_address_ca.rb
|
930
|
-
- test/test_name_es.rb
|
931
|
-
- test/test_name_sn.rb
|
932
|
-
- test/test_module_utils.rb
|
933
|
-
- test/test_animal_cn.rb
|
934
|
-
- test/test_code.rb
|
935
|
-
- test/test_name_ph.rb
|
936
|
-
- test/test_internet_se.rb
|
937
|
-
- test/test_address_us.rb
|
938
|
-
- test/test_phone_number_fr.rb
|
939
|
-
- test/test_cheesy_lingo.rb
|
940
|
-
- test/test_address_nl.rb
|
961
|
+
- test/test_name_se.rb
|
941
962
|
- test/test_name_th.rb
|
942
|
-
- test/
|
963
|
+
- test/test_name_kr.rb
|
943
964
|
- test/test_address_br.rb
|
944
|
-
- test/
|
945
|
-
- test/
|
946
|
-
- test/
|
947
|
-
- test/
|
948
|
-
- test/test_lorem_pl.rb
|
949
|
-
- test/test_products.rb
|
950
|
-
- test/test_skill.rb
|
965
|
+
- test/test_airline.rb
|
966
|
+
- test/test_phone_number_kr.rb
|
967
|
+
- test/test_address_ch.rb
|
968
|
+
- test/test_name_cs.rb
|
951
969
|
- test/test_name_kh.rb
|
952
|
-
- test/test_phone_number.rb
|
953
|
-
- test/test_book.rb
|
954
|
-
- test/test_lorem_ar.rb
|
955
|
-
- test/test_aws.rb
|
956
|
-
- test/test_address_mx.rb
|
957
970
|
- test/test_name_da.rb
|
958
|
-
- test/
|
959
|
-
- test/
|
960
|
-
- test/
|
971
|
+
- test/test_healthcare_ipsum.rb
|
972
|
+
- test/test_address_pl.rb
|
973
|
+
- test/test_vehicle.rb
|
974
|
+
- test/test_gender_ja.rb
|
975
|
+
- test/test_phone_number_id.rb
|
976
|
+
- test/test_name_ru.rb
|
977
|
+
- test/test_course_mathematiques.rb
|
978
|
+
- test/test_name_ga.rb
|
979
|
+
- test/test_name_nl.rb
|
980
|
+
- test/test_lorem_cn.rb
|
981
|
+
- test/test_lorem_kr.rb
|
982
|
+
- test/test_html_ipsum.rb
|