summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--test/lib/minitest/autorun.rb5
-rw-r--r--test/lib/minitest/benchmark.rb5
-rw-r--r--test/lib/minitest/hell.rb5
-rw-r--r--test/lib/minitest/mock.rb5
-rw-r--r--test/lib/minitest/parallel_each.rb5
-rw-r--r--test/lib/minitest/pride.rb5
-rw-r--r--test/lib/minitest/spec.rb5
-rw-r--r--test/lib/minitest/unit.rb5
-rw-r--r--test/minitest/metametameta.rb5
-rw-r--r--test/minitest/test_minitest_benchmark.rb5
-rw-r--r--test/minitest/test_minitest_mock.rb5
-rw-r--r--test/minitest/test_minitest_spec.rb5
-rw-r--r--test/minitest/test_minitest_unit.rb5
14 files changed, 6 insertions, 65 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e9bdc0f09..1d74ccbca5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat May 24 14:59:12 2014 Tanaka Akira <akr@fsij.org>
+
+ * test/lib/minitest: Remove comments not appropriate now.
+
+ * test/minitest: Ditto.
+
Sat May 24 14:02:04 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* NEWS: added minitest changes.
diff --git a/test/lib/minitest/autorun.rb b/test/lib/minitest/autorun.rb
index cb4a3a0e5d..392ffe25ef 100644
--- a/test/lib/minitest/autorun.rb
+++ b/test/lib/minitest/autorun.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
begin
require 'rubygems'
diff --git a/test/lib/minitest/benchmark.rb b/test/lib/minitest/benchmark.rb
index e233282b0a..719eaddf3e 100644
--- a/test/lib/minitest/benchmark.rb
+++ b/test/lib/minitest/benchmark.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require 'minitest/unit'
require 'minitest/spec'
diff --git a/test/lib/minitest/hell.rb b/test/lib/minitest/hell.rb
index 827bf0e320..3a156b3d95 100644
--- a/test/lib/minitest/hell.rb
+++ b/test/lib/minitest/hell.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require "minitest/parallel_each"
diff --git a/test/lib/minitest/mock.rb b/test/lib/minitest/mock.rb
index a5b0f602f5..19acaff68e 100644
--- a/test/lib/minitest/mock.rb
+++ b/test/lib/minitest/mock.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
class MockExpectationError < StandardError; end # :nodoc:
diff --git a/test/lib/minitest/parallel_each.rb b/test/lib/minitest/parallel_each.rb
index e1020b35a0..07e4e20179 100644
--- a/test/lib/minitest/parallel_each.rb
+++ b/test/lib/minitest/parallel_each.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
##
# Provides a parallel #each that lets you enumerate using N threads.
diff --git a/test/lib/minitest/pride.rb b/test/lib/minitest/pride.rb
index 40c35394fa..a7ae42ebde 100644
--- a/test/lib/minitest/pride.rb
+++ b/test/lib/minitest/pride.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require "minitest/unit"
diff --git a/test/lib/minitest/spec.rb b/test/lib/minitest/spec.rb
index d91fccf5bc..1250a56927 100644
--- a/test/lib/minitest/spec.rb
+++ b/test/lib/minitest/spec.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
#!/usr/bin/ruby -w
diff --git a/test/lib/minitest/unit.rb b/test/lib/minitest/unit.rb
index 465e5b4c98..9b9b9e99ce 100644
--- a/test/lib/minitest/unit.rb
+++ b/test/lib/minitest/unit.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require "optparse"
require "rbconfig"
diff --git a/test/minitest/metametameta.rb b/test/minitest/metametameta.rb
index 65eece07ca..87bc56c93b 100644
--- a/test/minitest/metametameta.rb
+++ b/test/minitest/metametameta.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require 'tempfile'
require 'stringio'
diff --git a/test/minitest/test_minitest_benchmark.rb b/test/minitest/test_minitest_benchmark.rb
index 8f0aab4904..d04bb9a125 100644
--- a/test/minitest/test_minitest_benchmark.rb
+++ b/test/minitest/test_minitest_benchmark.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require 'minitest/autorun'
require 'minitest/benchmark'
diff --git a/test/minitest/test_minitest_mock.rb b/test/minitest/test_minitest_mock.rb
index 53216d1aaa..454769b3f3 100644
--- a/test/minitest/test_minitest_mock.rb
+++ b/test/minitest/test_minitest_mock.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require 'minitest/autorun'
diff --git a/test/minitest/test_minitest_spec.rb b/test/minitest/test_minitest_spec.rb
index e39d96d50a..bc52cbe346 100644
--- a/test/minitest/test_minitest_spec.rb
+++ b/test/minitest/test_minitest_spec.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
# encoding: utf-8
require "minitest/autorun"
diff --git a/test/minitest/test_minitest_unit.rb b/test/minitest/test_minitest_unit.rb
index 0f29614e87..ec90d04f4e 100644
--- a/test/minitest/test_minitest_unit.rb
+++ b/test/minitest/test_minitest_unit.rb
@@ -1,9 +1,4 @@
# encoding: utf-8
-######################################################################
-# This file is imported from the minitest project.
-# DO NOT make modifications in this repo. They _will_ be reverted!
-# File a patch instead and assign it to Ryan Davis.
-######################################################################
require 'pathname'
require 'minitest/metametameta'