diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-21 07:19:25 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-21 07:19:25 -0800 |
| commit | 429359819a9a3155984c134f62976a42d314244c (patch) | |
| tree | f542feb09ad9a800ed1c89da2551760bef9ae8be /test | |
| parent | 46a3bd76e5baa787933cb61acbb7b5cae851fdcf (diff) | |
| parent | f612f32aef65e5c1f16ebf50fcf9221309251d25 (diff) | |
| download | mruby-429359819a9a3155984c134f62976a42d314244c.tar.gz mruby-429359819a9a3155984c134f62976a42d314244c.zip | |
Merge pull request #662 from skandhas/pr-add-Module-class_variable_set
Add Module#class_variable_set for mruby
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/module.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/t/module.rb b/test/t/module.rb index fbc93eb08..54d4f3015 100644 --- a/test/t/module.rb +++ b/test/t/module.rb @@ -54,6 +54,21 @@ assert('Module#class_variable_get', '15.2.2.4.17') do Test4ClassVariableGet.class_variable_get(:@@cv) == 99 end +assert('Module#class_variable_set', '15.2.2.4.18') do + class Test4ClassVariableSet + @@foo = 100 + def foo + @@foo + end + end + + Test4ClassVariableSet.class_variable_set(:@@cv, 99) + Test4ClassVariableSet.class_variable_set(:@@foo, 101) + + Test4ClassVariableSet.class_variables.include? :@@cv and + Test4ClassVariableSet.class_variable_get(:@@cv) == 99 and + Test4ClassVariableSet.new.foo == 101 +end assert('Module#class_variables', '15.2.2.4.19') do class Test4ClassVariables1 |
