File tree Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 1
1
exclude :test_eval_with_binding_scoping , "needs investigation"
2
2
exclude :test_include_refinement , "needs investigation"
3
3
exclude :test_prepend_after_refine , "needs investigation"
4
- exclude :test_refine_module , "needs investigation"
5
4
exclude :test_refine_prepended_class , "needs investigation"
6
5
exclude :test_refine_with_proc , "needs investigation"
7
6
exclude :test_respond_to_should_use_refinements , "needs investigation"
Original file line number Diff line number Diff line change @@ -406,20 +406,19 @@ def baz
406
406
end
407
407
408
408
module M2
409
- # TODO CS 21-Feb-19 can we run this now?
410
- #refine M do
411
- # def foo
412
- # "M@M2#foo"
413
- # end
414
- #
415
- # def bar
416
- # "#{super} M@M2#bar"
417
- # end
418
- #
419
- # def baz
420
- # "#{super} M@M2#baz"
421
- # end
422
- #end
409
+ refine M do
410
+ def foo
411
+ "M@M2#foo"
412
+ end
413
+
414
+ def bar
415
+ "#{ super } M@M2#bar"
416
+ end
417
+
418
+ def baz
419
+ "#{ super } M@M2#baz"
420
+ end
421
+ end
423
422
end
424
423
425
424
using M2
You can’t perform that action at this time.
0 commit comments