diff options
author | Vít Ondruch <vondruch@redhat.com> | 2016-07-04 13:11:44 +0200 |
---|---|---|
committer | Vít Ondruch <vondruch@redhat.com> | 2016-07-04 13:11:44 +0200 |
commit | 7d7c2d13ba896dd8b58fe91d2fe0c4fc588069ca (patch) | |
tree | 88f5c06236a1588ec1366f11be569c22584a48d4 /activesupport/test/multibyte_grapheme_break_conformance_test.rb | |
parent | 9bdf08c5a57d0411db866124eca4deba5097c30a (diff) | |
download | rails-7d7c2d13ba896dd8b58fe91d2fe0c4fc588069ca.tar.gz rails-7d7c2d13ba896dd8b58fe91d2fe0c4fc588069ca.tar.bz2 rails-7d7c2d13ba896dd8b58fe91d2fe0c4fc588069ca.zip |
DRY Downloader.
Diffstat (limited to 'activesupport/test/multibyte_grapheme_break_conformance_test.rb')
-rw-r--r-- | activesupport/test/multibyte_grapheme_break_conformance_test.rb | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/activesupport/test/multibyte_grapheme_break_conformance_test.rb b/activesupport/test/multibyte_grapheme_break_conformance_test.rb index 6e2f02abed..45e1976246 100644 --- a/activesupport/test/multibyte_grapheme_break_conformance_test.rb +++ b/activesupport/test/multibyte_grapheme_break_conformance_test.rb @@ -1,29 +1,14 @@ # encoding: utf-8 require 'abstract_unit' +require 'multibyte_test_helpers' require 'fileutils' require 'open-uri' require 'tmpdir' class MultibyteGraphemeBreakConformanceTest < ActiveSupport::TestCase - class Downloader - def self.download(from, to) - unless File.exist?(to) - $stderr.puts "Downloading #{from} to #{to}" - unless File.exist?(File.dirname(to)) - system "mkdir -p #{File.dirname(to)}" - end - open(from) do |source| - File.open(to, 'w') do |target| - source.each_line do |l| - target.write l - end - end - end - end - end - end + include MultibyteTestHelpers TEST_DATA_URL = "http://www.unicode.org/Public/#{ActiveSupport::Multibyte::Unicode::UNICODE_VERSION}/ucd/auxiliary" TEST_DATA_FILE = '/GraphemeBreakTest.txt' |