@@ -791,7 +791,7 @@ def test_merge_constants
791791 const = cm1 . add_constant RDoc ::Constant . new ( 'C3' , nil , 'one' )
792792 const . record_location tl1
793793
794- store = RDoc ::Store . new
794+ store = RDoc ::Store . new ( RDoc :: Options . new )
795795 tl = store . add_file 'one.rb'
796796 cm2 = tl . add_class RDoc ::ClassModule , 'Klass'
797797 cm2 . instance_variable_set :@comment , @RM ::Document . new
@@ -826,7 +826,7 @@ def test_merge_constants_version_0
826826 const = cm1 . add_constant RDoc ::Constant . new ( 'C3' , nil , 'one' )
827827 const . record_location tl1
828828
829- store = RDoc ::Store . new
829+ store = RDoc ::Store . new ( RDoc :: Options . new )
830830 tl = store . add_file 'one.rb'
831831 cm2 = tl . add_class RDoc ::ClassModule , 'Klass'
832832 cm2 . instance_variable_set :@comment , @RM ::Document . new
@@ -859,7 +859,7 @@ def test_merge_extends
859859 ext . record_location tl1
860860
861861 tl2 = @store . add_file 'two.rb'
862- tl2 . store = RDoc ::Store . new
862+ tl2 . store = RDoc ::Store . new ( RDoc :: Options . new )
863863
864864 cm2 = tl2 . add_class RDoc ::ClassModule , 'Klass'
865865 cm2 . instance_variable_set :@comment , @RM ::Document . new
@@ -895,7 +895,7 @@ def test_merge_includes
895895 incl . record_location tl1
896896
897897 tl2 = @store . add_file 'two.rb'
898- tl2 . store = RDoc ::Store . new
898+ tl2 . store = RDoc ::Store . new ( RDoc :: Options . new )
899899
900900 cm2 = tl2 . add_class RDoc ::ClassModule , 'Klass'
901901 cm2 . instance_variable_set :@comment , @RM ::Document . new
@@ -931,7 +931,7 @@ def test_merge_includes_version_0
931931 incl . record_location tl1
932932
933933 tl2 = @store . add_file 'one.rb'
934- tl2 . store = RDoc ::Store . new
934+ tl2 . store = RDoc ::Store . new ( RDoc :: Options . new )
935935
936936 cm2 = tl2 . add_class RDoc ::ClassModule , 'Klass'
937937 cm2 . instance_variable_set :@comment , @RM ::Document . new
@@ -1034,7 +1034,7 @@ def test_merge_sections
10341034 cm1 . add_section 'section 2' , comment ( 'comment 2 a' , tl1_1 )
10351035 cm1 . add_section 'section 4' , comment ( 'comment 4 a' , tl1_1 )
10361036
1037- store2 = RDoc ::Store . new
1037+ store2 = RDoc ::Store . new ( RDoc :: Options . new )
10381038 tl2_1 = store2 . add_file 'one.rb'
10391039 tl2_2 = store2 . add_file 'two.rb'
10401040
@@ -1086,7 +1086,7 @@ def test_merge_sections_overlap
10861086 cm1 . add_section 'section' , comment ( 'comment 1 a' , tl1_1 )
10871087 cm1 . add_section 'section' , comment ( 'comment 3' , tl1_3 )
10881088
1089- store2 = RDoc ::Store . new
1089+ store2 = RDoc ::Store . new ( RDoc :: Options . new )
10901090 tl2_1 = store2 . add_file 'one.rb'
10911091 tl2_2 = store2 . add_file 'two.rb'
10921092 tl2_3 = store2 . add_file 'three.rb'
@@ -1382,7 +1382,7 @@ def test_update_aliases_reparent
13821382 end
13831383
13841384 def test_update_aliases_reparent_root
1385- store = RDoc ::Store . new
1385+ store = RDoc ::Store . new ( RDoc :: Options . new )
13861386
13871387 top_level = store . add_file 'file.rb'
13881388
0 commit comments