File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
activesupport/test/cache/stores Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ def setup
152
152
super
153
153
end
154
154
155
- def forward_compatibility
155
+ def test_forward_compatibility
156
156
previous_format = ActiveSupport ::Cache . format_version
157
157
ActiveSupport ::Cache . format_version = 6.1
158
158
@old_store = lookup_store
@@ -162,7 +162,7 @@ def forward_compatibility
162
162
assert_equal "bar" , @cache . read ( "foo" )
163
163
end
164
164
165
- def forward_compatibility
165
+ def test_backward_compatibility
166
166
previous_format = ActiveSupport ::Cache . format_version
167
167
ActiveSupport ::Cache . format_version = 6.1
168
168
@old_store = lookup_store
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ def setup
289
289
super
290
290
end
291
291
292
- def forward_compatibility
292
+ def test_forward_compatibility
293
293
previous_format = ActiveSupport ::Cache . format_version
294
294
ActiveSupport ::Cache . format_version = 6.1
295
295
@old_store = lookup_store
@@ -299,7 +299,7 @@ def forward_compatibility
299
299
assert_equal "bar" , @cache . read ( "foo" )
300
300
end
301
301
302
- def forward_compatibility
302
+ def test_backward_compatibility
303
303
previous_format = ActiveSupport ::Cache . format_version
304
304
ActiveSupport ::Cache . format_version = 6.1
305
305
@old_store = lookup_store
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ def before_setup
216
216
super
217
217
end
218
218
219
- def forward_compatibility
219
+ def test_forward_compatibility
220
220
previous_format = ActiveSupport ::Cache . format_version
221
221
ActiveSupport ::Cache . format_version = 6.1
222
222
@old_store = lookup_store
@@ -226,7 +226,7 @@ def forward_compatibility
226
226
assert_equal "bar" , @cache . read ( "foo" )
227
227
end
228
228
229
- def forward_compatibility
229
+ def test_backward_compatibility
230
230
previous_format = ActiveSupport ::Cache . format_version
231
231
ActiveSupport ::Cache . format_version = 6.1
232
232
@old_store = lookup_store
You can’t perform that action at this time.
0 commit comments