ruby-changes:16402
From: nobu <ko1@a...>
Date: Tue, 22 Jun 2010 21:34:02 +0900 (JST)
Subject: [ruby-changes:16402] Ruby:r28387 (trunk, ruby_1_8): * test/optparse/test_summary.rb: fixed superclass so that it run
nobu 2010-06-22 21:33:33 +0900 (Tue, 22 Jun 2010) New Revision: 28387 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28387 Log: * test/optparse/test_summary.rb: fixed superclass so that it run solely. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/test/optparse/test_summary.rb branches/ruby_1_8/version.h trunk/ChangeLog trunk/test/optparse/test_summary.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 28386) +++ ChangeLog (revision 28387) @@ -1,3 +1,8 @@ +Tue Jun 22 21:33:23 2010 Nobuyoshi Nakada <nobu@r...> + + * test/optparse/test_summary.rb: fixed superclass so that it run + solely. + Tue Jun 22 19:57:33 2010 Nobuyoshi Nakada <nobu@r...> * parse.y (shadowing_lvar_gen): should add lvar to vars and Index: test/optparse/test_summary.rb =================================================================== --- test/optparse/test_summary.rb (revision 28386) +++ test/optparse/test_summary.rb (revision 28387) @@ -1,8 +1,6 @@ -require 'test/unit' -require 'optparse' +require_relative 'test_optparse' -class TestOptionParser < Test::Unit::TestCase; end -class TestOptionParser::SummaryTest < Test::Unit::TestCase +class TestOptionParser::SummaryTest < TestOptionParser def test_short_clash r = nil o = OptionParser.new do |opts| Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 28386) +++ ruby_1_8/ChangeLog (revision 28387) @@ -1,3 +1,8 @@ +Tue Jun 22 21:33:23 2010 Nobuyoshi Nakada <nobu@r...> + + * test/optparse/test_summary.rb: fixed superclass so that it run + solely. + Tue Jun 15 10:29:00 2010 Kenta Murata <mrkn@m...> * bignum.c (rb_big2dbl), test/ruby/test_bignum.rb (test_to_f): Index: ruby_1_8/version.h =================================================================== --- ruby_1_8/version.h (revision 28386) +++ ruby_1_8/version.h (revision 28387) @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.8" -#define RUBY_RELEASE_DATE "2010-06-15" +#define RUBY_RELEASE_DATE "2010-06-22" #define RUBY_VERSION_CODE 188 -#define RUBY_RELEASE_CODE 20100615 +#define RUBY_RELEASE_CODE 20100622 #define RUBY_PATCHLEVEL -1 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 8 #define RUBY_RELEASE_YEAR 2010 #define RUBY_RELEASE_MONTH 6 -#define RUBY_RELEASE_DAY 15 +#define RUBY_RELEASE_DAY 22 #define NO_STRING_LITERAL_CONCATENATION 1 #ifdef RUBY_EXTERN Index: ruby_1_8/test/optparse/test_summary.rb =================================================================== --- ruby_1_8/test/optparse/test_summary.rb (revision 28386) +++ ruby_1_8/test/optparse/test_summary.rb (revision 28387) @@ -1,8 +1,6 @@ -require 'test/unit' -require 'optparse' +require 'test_optparse' -class TestOptionParser < Test::Unit::TestCase; end -class TestOptionParser::SummaryTest < Test::Unit::TestCase +class TestOptionParser::SummaryTest < TestOptionParser def test_short_clash r = nil o = OptionParser.new do |opts| -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/