faker 1.6.0 → 1.6.1
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/History.txt +4 -1
- data/lib/faker/version.rb +1 -1
- data/test/test_faker_city.rb +7 -0
- data/test/test_faker_commerce.rb +3 -0
- data/test/test_faker_street.rb +6 -0
- data/test/test_flexible.rb +7 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27c952ddf12f507892b74cf2671e181b01af31f9
|
4
|
+
data.tar.gz: 8e2708410f8618f004ee8e4e5acac93c0aa26ed4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 242db2ab7b4a4e05410c49554e8e5bd52f3056bb481a7344ceb77d6a28e1d3f74539b730fc02a3d02ca84d63e3b2f814d8b9509f3d832b4947dfa030adcbfc6a
|
7
|
+
data.tar.gz: 2afa80a186b311afdc65f38d58cb84b8415adc4b4d7be1765835e661af54ca94720701be0b91fbf1f1b94775fdba27ab4989cbc87d15d488fd12b162f0882cca
|
data/History.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
-
== 1.6.
|
1
|
+
== 1.6.1 2015-11-23
|
2
|
+
* Fix for locale issues in tests
|
3
|
+
|
4
|
+
== 1.6.0 2015-11-23
|
2
5
|
* Lots of bug fixes -- most notably, a fix for email addresses and domains in non-en locales
|
3
6
|
* Updated locales: de, en-AU, en-NZ, en-SG, en-US, en-au-ocker, en, es, fr, he, it, ja, nb-NO, pl, pt-BR, sk, and zh-CN
|
4
7
|
* Updated classes: Address, Avatar, Book, Code, Commerce, Company, Hipster, IDNumber, Internet, Number, Placeholdit, Shakespeare, and Time
|
data/lib/faker/version.rb
CHANGED
data/test/test_faker_city.rb
CHANGED
@@ -2,6 +2,7 @@ require File.dirname(__FILE__) + '/test_helper.rb'
|
|
2
2
|
|
3
3
|
class TestFakerCity < Test::Unit::TestCase
|
4
4
|
def setup
|
5
|
+
@old_locales = I18n.config.available_locales
|
5
6
|
xx = {
|
6
7
|
:faker => {
|
7
8
|
:name => {:first_name => ['alice'], :last_name => ['smith']},
|
@@ -9,6 +10,7 @@ class TestFakerCity < Test::Unit::TestCase
|
|
9
10
|
}
|
10
11
|
}
|
11
12
|
I18n.backend.store_translations(:xx, xx)
|
13
|
+
I18n.config.available_locales += [ :xx ]
|
12
14
|
|
13
15
|
xy = {
|
14
16
|
:faker => {
|
@@ -22,6 +24,11 @@ class TestFakerCity < Test::Unit::TestCase
|
|
22
24
|
}
|
23
25
|
}
|
24
26
|
I18n.backend.store_translations(:xy, xy)
|
27
|
+
I18n.config.available_locales += [ :xy ]
|
28
|
+
end
|
29
|
+
|
30
|
+
def teardown
|
31
|
+
I18n.config.available_locales = @old_locales
|
25
32
|
end
|
26
33
|
|
27
34
|
def test_default_city_formats
|
data/test/test_faker_commerce.rb
CHANGED
@@ -23,6 +23,7 @@ class TestFakerCommerce < Test::Unit::TestCase
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def test_department_should_accept_localized_separator
|
26
|
+
@old_locales = I18n.config.available_locales
|
26
27
|
data = {
|
27
28
|
:faker => {
|
28
29
|
:separator => ' + ',
|
@@ -33,9 +34,11 @@ class TestFakerCommerce < Test::Unit::TestCase
|
|
33
34
|
}
|
34
35
|
|
35
36
|
I18n.backend.store_translations(:xy, data)
|
37
|
+
I18n.config.available_locales += [ :xy ]
|
36
38
|
I18n.with_locale(:xy) do
|
37
39
|
assert_match ' + ', @tester.department(2, true)
|
38
40
|
end
|
41
|
+
I18n.config.available_locales = @old_locales
|
39
42
|
end
|
40
43
|
|
41
44
|
def test_department_should_have_exact_number_of_categories_when_fixed_amount
|
data/test/test_faker_street.rb
CHANGED
@@ -2,6 +2,7 @@ require File.dirname(__FILE__) + '/test_helper.rb'
|
|
2
2
|
|
3
3
|
class TestFakerStreet < Test::Unit::TestCase
|
4
4
|
def setup
|
5
|
+
@old_locales = I18n.config.available_locales
|
5
6
|
shire = {
|
6
7
|
:faker => {
|
7
8
|
:address => {
|
@@ -17,6 +18,11 @@ class TestFakerStreet < Test::Unit::TestCase
|
|
17
18
|
}
|
18
19
|
}
|
19
20
|
I18n.backend.store_translations(:shire, shire)
|
21
|
+
I18n.config.available_locales += [ :shire ]
|
22
|
+
end
|
23
|
+
|
24
|
+
def teardown
|
25
|
+
I18n.config.available_locales = @old_locales
|
20
26
|
end
|
21
27
|
|
22
28
|
def test_street_name_supports_flexible_formats
|
data/test/test_flexible.rb
CHANGED
@@ -9,10 +9,16 @@ end
|
|
9
9
|
class TestFlexible < Test::Unit::TestCase
|
10
10
|
|
11
11
|
def setup
|
12
|
+
@old_locales = I18n.config.available_locales
|
12
13
|
I18n.backend.store_translations(:xx, :faker => {:chow => {:yummie => [:fudge, :chocolate, :caramel], :taste => "delicious"}})
|
13
14
|
I18n.backend.store_translations(:home, :faker => {:address => {:birthplace => [:bed, :hospital, :airplane]}})
|
14
15
|
I18n.backend.store_translations(:kindergarden, :faker => {:name => {:girls_name => [:alice, :cheryl, :tatiana]}})
|
15
16
|
I18n.backend.store_translations(:work, :faker => {:company => {:do_stuff => [:work, :work, :work]}})
|
17
|
+
I18n.config.available_locales += [ :xx, :home, :kindergarden, :work ]
|
18
|
+
end
|
19
|
+
|
20
|
+
def teardown
|
21
|
+
I18n.config.available_locales = @old_locales
|
16
22
|
end
|
17
23
|
|
18
24
|
def test_flexible_multiple_values
|
@@ -35,7 +41,7 @@ class TestFlexible < Test::Unit::TestCase
|
|
35
41
|
end
|
36
42
|
end
|
37
43
|
end
|
38
|
-
|
44
|
+
|
39
45
|
def test_address_is_flexible
|
40
46
|
I18n.with_locale(:home) do
|
41
47
|
assert [:bed, :hospital, :airplane].include? Faker::Address.birthplace
|