diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-25 20:54:50 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-25 20:54:50 +0000 |
| commit | a8454f5691ca8b6e078b118a012ed3095ddb7087 (patch) | |
| tree | 079d364d49679960171bb2d976179c0f8ad8ddea | |
| parent | e155ff550f2c94b3b02479ff7e712dce0e5fb388 (diff) | |
| download | ruby-a8454f5691ca8b6e078b118a012ed3095ddb7087.tar.gz ruby-a8454f5691ca8b6e078b118a012ed3095ddb7087.tar.xz ruby-a8454f5691ca8b6e078b118a012ed3095ddb7087.zip | |
* test/ruby/test_fiber.rb: fix to require 'continuation'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | test/ruby/test_fiber.rb | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sun Aug 26 05:52:08 2007 Koichi Sasada <ko1@atdot.net> + + * test/ruby/test_fiber.rb: fix to require 'continuation'. + Sat Aug 25 23:22:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * include/ruby/encoding.h: remove unused rb_enc_ismbchar(). diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb index a8bce8a06..d19daede3 100644 --- a/test/ruby/test_fiber.rb +++ b/test/ruby/test_fiber.rb @@ -1,5 +1,6 @@ require 'test/unit' require 'fiber' +require 'continuation' class TestFiber < Test::Unit::TestCase def test_normal |
