diff options
author | Yusuke Endoh <[email protected]> | 2020-12-19 03:25:48 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2020-12-19 03:25:48 +0900 |
commit | 0e79d4cde547edd52b2d5bf576780906e45a742d (patch) | |
tree | 60a7fae8dbbba40f3ef47857eead6dddcfc733fb /test/ruby/test_module.rb | |
parent | aa7a02071072b5b0dd15357740d0ffd506bb0381 (diff) |
Added tests for [Feature #17314]
Partially reintroduce 34f06062174882a98ebef998c50ad8d4f7fc0f2e
Diffstat (limited to 'test/ruby/test_module.rb')
-rw-r--r-- | test/ruby/test_module.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index c45b88490a..a0f7a6d911 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -1154,6 +1154,15 @@ class TestModule < Test::Unit::TestCase assert_raise(NameError) do c.instance_eval { attr_reader :"." } end + + assert_equal([:a], c.class_eval { attr :a }) + assert_equal([:b, :c], c.class_eval { attr :b, :c }) + assert_equal([:d], c.class_eval { attr_reader :d }) + assert_equal([:e, :f], c.class_eval { attr_reader :e, :f }) + assert_equal([:g=], c.class_eval { attr_writer :g }) + assert_equal([:h=, :i=], c.class_eval { attr_writer :h, :i }) + assert_equal([:g, :g=], c.class_eval { attr_accessor :g }) + assert_equal([:h, :h=, :i, :i=], c.class_eval { attr_accessor :h, :i }) end def test_undef |