Skip to content

Commit

Permalink
merge revision(s) 24621:
Browse files Browse the repository at this point in the history
	* lib/test/unit.rb (Test::Unit.run=, Test::Unit.run?): fixed rdoc.
	  [ruby-core:25034]


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@26096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Dec 14, 2009
1 parent 0f0fa9c commit 4420cd2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Mon Dec 14 13:28:48 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/test/unit.rb (Test::Unit.run=, Test::Unit.run?): fixed rdoc.
[ruby-core:25034]

Mon Dec 14 13:21:32 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/open3.rb (Open3#popen3): fixed and improved rdoc. [ruby-core:25658]
Expand Down
5 changes: 3 additions & 2 deletions lib/test/unit.rb
Expand Up @@ -261,12 +261,13 @@ module Test # :nodoc:
#

module Unit
# If set to false Test::Unit will not automatically run at exit.
# Set true when Test::Unit has run. If set to true Test::Unit
# will not automatically run at exit.
def self.run=(flag)
@run = flag
end

# Automatically run tests at exit?
# Already tests have run?
def self.run?
@run ||= false
end
Expand Down
2 changes: 1 addition & 1 deletion version.h
Expand Up @@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2009-12-14"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20091214
#define RUBY_PATCHLEVEL 239
#define RUBY_PATCHLEVEL 240

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
Expand Down

0 comments on commit 4420cd2

Please sign in to comment.