diff options
author | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-21 06:41:09 +0000 |
---|---|---|
committer | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-21 06:41:09 +0000 |
commit | 02cb9c932a6e1a25b5e04c77053face048a11eff (patch) | |
tree | 3c7866dfe2dee65bf745658827c6a1aa0100d5d6 /test/-ext-/debug | |
parent | ac4b2d990c8484af7a214381e61d3494b6b858b1 (diff) | |
download | bundler-02cb9c932a6e1a25b5e04c77053face048a11eff.tar.gz |
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-/debug')
-rw-r--r-- | test/-ext-/debug/test_debug.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/-ext-/debug/test_debug.rb b/test/-ext-/debug/test_debug.rb index da66b1baf8..bc41c1bb79 100644 --- a/test/-ext-/debug/test_debug.rb +++ b/test/-ext-/debug/test_debug.rb @@ -57,19 +57,19 @@ class TestDebug < Test::Unit::TestCase binds_check binds, bug7635 end - class MyRelation - include Enumerable - + class MyRelation + include Enumerable + def each yield :each_entry - end - end - + end + end + def test_lazy_block x = MyRelation.new.any? do Bug::Debug.inspector true - end + end assert_equal true, x, '[Bug #15105]' end end |