aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xtest/csv/test_features.rb1
-rwxr-xr-xtest/csv/test_serialization.rb1
3 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e4e45c664..4ac59ce341 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 7 23:07:30 2012 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
+
+ * test/csv/test_features.rb: add require for Tempfile.
+ * test/csv/test_serialization.rb: ditto.
+
Fri Jul 6 06:49:50 2012 Eric Hodel <drbrain@segment7.net>
* array.c (rb_ary_aref): Added a description of the behavior of
diff --git a/test/csv/test_features.rb b/test/csv/test_features.rb
index 1c178d130d..7176cca0e0 100755
--- a/test/csv/test_features.rb
+++ b/test/csv/test_features.rb
@@ -13,6 +13,7 @@ rescue LoadError
end
require_relative "base"
+require "tempfile"
class TestCSV::Features < TestCSV
extend DifferentOFS
diff --git a/test/csv/test_serialization.rb b/test/csv/test_serialization.rb
index 09440a426b..dafe12bb38 100755
--- a/test/csv/test_serialization.rb
+++ b/test/csv/test_serialization.rb
@@ -8,6 +8,7 @@
# under the terms of Ruby's license.
require_relative "base"
+require "tempfile"
# An example of how to provide custom CSV serialization.
class Hash