test/test_identification_it.rb in ffaker-2.22.0 vs test/test_identification_it.rb in ffaker-2.23.0

- old
+ new

@@ -26,9 +26,20 @@ def test_gender assert_match(/\A(Maschio|Femmina)\z/, @tester.gender) end def test_ethnicity - ethnicity_regex = %r{\A(Afroamericano|Asiatico/isolano del Pacifico|Caucasico|Ispanico|Nativo americano|Multirazziale|Altro|Preferisco non rispondere)\z} + ethnicity_regex = %r{ + \A( + Afroamericano| + Asiatico/isolano\ del\ Pacifico| + Caucasico| + Ispanico| + Nativo\ americano| + Multirazziale| + Altro| + Preferisco\ non\ rispondere + )\z + }x assert_match(ethnicity_regex, @tester.ethnicity) end end