aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-charlock_holmes/tests-fix-icu59.1.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-04-28 11:34:04 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-04-28 11:34:12 +0200
commit0dab18db737e898e60c48e66fe46e01ff86b4206 (patch)
treea914d572261c85ebfd57abb9d32d294660d6cad3 /community/ruby-charlock_holmes/tests-fix-icu59.1.patch
parentf8f8ca5bef4da3e3b64b1245df72381e0b019e13 (diff)
downloadaports-0dab18db737e898e60c48e66fe46e01ff86b4206.tar.bz2
aports-0dab18db737e898e60c48e66fe46e01ff86b4206.tar.xz
community/ruby-charlock_holmes: upgrade to 0.7.6
Diffstat (limited to 'community/ruby-charlock_holmes/tests-fix-icu59.1.patch')
-rw-r--r--community/ruby-charlock_holmes/tests-fix-icu59.1.patch60
1 files changed, 0 insertions, 60 deletions
diff --git a/community/ruby-charlock_holmes/tests-fix-icu59.1.patch b/community/ruby-charlock_holmes/tests-fix-icu59.1.patch
deleted file mode 100644
index 3de390f333..0000000000
--- a/community/ruby-charlock_holmes/tests-fix-icu59.1.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-See https://github.com/brianmario/charlock_holmes/issues/115
-
---- a/test/encoding_detector_test.rb
-+++ b/test/encoding_detector_test.rb
-@@ -24,7 +24,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_class_level_detect_all_method_accepts_encoding_hint
-@@ -33,7 +33,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_has_detect_method
-@@ -54,7 +54,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_detect_all_accepts_encoding_hint
-@@ -63,7 +63,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_strip_tags_flag
---- a/test/string_methods_test.rb
-+++ b/test/string_methods_test.rb
-@@ -26,7 +26,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_detect_encodings_accepts_encoding_hint_param
-@@ -37,7 +37,7 @@
- assert detected_list.is_a? Array
-
- encoding_list = detected_list.map {|d| d[:encoding]}.sort
-- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
-+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
- end
-
- def test_returns_a_ruby_compatible_encoding_name