From 714dbed8b217ff179088176213f06b8dffb28d0a Mon Sep 17 00:00:00 2001 From: kazu Date: Fri, 30 May 2008 14:56:56 +0000 Subject: * test/ruby/test_rubyoptions.rb: add a test of RUBY_DESCRIPTION. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_rubyoptions.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 3304a17eb..3f459f60a 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -84,7 +84,9 @@ class TestRubyOptions < Test::Unit::TestCase def test_verbose ruby('-vve', '') do |w, r, e| - assert_match(/^ruby #{RUBY_VERSION} .*? \[#{RUBY_PLATFORM}\]$/, r.read) + description = r.read + assert_match(/^ruby #{RUBY_VERSION} .*? \[#{RUBY_PLATFORM}\]$/, description) + assert_equal RUBY_DESCRIPTION, description.chomp end ruby('--verbose', '-e', 'p $VERBOSE') do |w, r, e| -- cgit