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
Родитель b17bab7472
Коммит 501e7f4959
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -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