1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

support multi-run for ruby/test_basicinstructions.rb

cvar should be initialized at first.
This commit is contained in:
Koichi Sasada 2020-01-28 12:01:26 +09:00
parent b17bab7472
commit 501e7f4959

View file

@ -428,7 +428,9 @@ class TestBasicInstructions < Test::Unit::TestCase
end
class CVarA
@@cv = 'CVarA@@cv'
def self.setup
@@cv = 'CVarA@@cv'
end
def self.cv() @@cv end
def self.cv=(v) @@cv = v end
class << self
@ -449,6 +451,7 @@ class TestBasicInstructions < Test::Unit::TestCase
end
def test_class_variable
CVarA.setup
assert_equal 'CVarA@@cv', CVarA.cv
assert_equal 'CVarA@@cv', CVarA.cv2
assert_equal 'CVarA@@cv', CVarA.new.cv