aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-/debug
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-07 07:51:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-07 07:51:16 +0000
commit6b5d5e53223eb4c50832f6e1f24a66638131a44e (patch)
tree71c60849cbf531a507478f91930009c1dfb77173 /test/-ext-/debug
parentd4939eef6c8da98f2a4cf9b9b8b201e524dcd3c1 (diff)
downloadruby-6b5d5e53223eb4c50832f6e1f24a66638131a44e.tar.gz
* test/-ext-/debug/test_profile_frames.rb: rename class C to
something long name because one test depends on absence of class ::C. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43173 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-/debug')
-rw-r--r--test/-ext-/debug/test_profile_frames.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/-ext-/debug/test_profile_frames.rb b/test/-ext-/debug/test_profile_frames.rb
index 05e4706eb6..854f3bc2db 100644
--- a/test/-ext-/debug/test_profile_frames.rb
+++ b/test/-ext-/debug/test_profile_frames.rb
@@ -1,7 +1,7 @@
require 'test/unit'
require '-test-/debug'
-class C
+class SampleClassForTestProfileFrames
def self.bar(block)
block.call
end
@@ -14,7 +14,7 @@ end
class TestProfileFrames < Test::Unit::TestCase
def test_profile_frames
frames = Fiber.new{
- Fiber.yield C.new.foo(lambda{ Bug::Debug.profile_frames(0, 10) })
+ Fiber.yield SampleClassForTestProfileFrames.new.foo(lambda{ Bug::Debug.profile_frames(0, 10) })
}.resume
assert_equal(4, frames.size)
@@ -33,8 +33,8 @@ class TestProfileFrames < Test::Unit::TestCase
]
classes = [
TestProfileFrames,
- C, # singleton method
- C,
+ SampleClassForTestProfileFrames, # singleton method
+ SampleClassForTestProfileFrames,
TestProfileFrames,
]
singleton_method_p = [