diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-14 04:30:52 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-14 04:30:52 -0700 |
| commit | 34cd70b1c5fabc3e3a4f6a705c2bcb3a78fd7ab9 (patch) | |
| tree | 90d117b0192dadc30bf038369266836355449fe6 /test/t/methods.rb | |
| parent | dbc93621c94b9b2d2b437cde40d8efec7337a64d (diff) | |
| parent | f6975ea789d3fe04b9fe58472e9d4ed4ebd6ea67 (diff) | |
| download | mruby-34cd70b1c5fabc3e3a4f6a705c2bcb3a78fd7ab9.tar.gz mruby-34cd70b1c5fabc3e3a4f6a705c2bcb3a78fd7ab9.zip | |
Merge pull request #1279 from Bovi-Li/improve-tests
Improve Test Infrastructure (Part 1)
Diffstat (limited to 'test/t/methods.rb')
| -rw-r--r-- | test/t/methods.rb | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/test/t/methods.rb b/test/t/methods.rb new file mode 100644 index 000000000..bbd8ee09d --- /dev/null +++ b/test/t/methods.rb @@ -0,0 +1,109 @@ +## +# Chapter 13.3 "Methods" ISO Test + +assert('The alias statement', '13.3.6 a) 4)') do + # check aliasing in all possible ways + + def alias_test_method_original; true; end + + alias alias_test_method_a alias_test_method_original + alias :alias_test_method_b :alias_test_method_original + + assert_true(alias_test_method_original) + assert_true(alias_test_method_a) + assert_true(alias_test_method_b) +end + +assert('The alias statement (overwrite original)', '13.3.6 a) 4)') do + # check that an aliased method can be overwritten + # without side effect + + def alias_test_method_original; true; end + + alias alias_test_method_a alias_test_method_original + alias :alias_test_method_b :alias_test_method_original + + assert_true(alias_test_method_original) + + def alias_test_method_original; false; end + + assert_false(alias_test_method_original) + assert_true(alias_test_method_a) + assert_true(alias_test_method_b) +end + +assert('The alias statement', '13.3.6 a) 5)') do + # check that alias is raising NameError if + # non-existing method should be undefined + + assert_raise(NameError) do + alias new_name_a non_existing_method + end + + assert_raise(NameError) do + alias :new_name_b :non_existing_method + end +end + +assert('The undef statement', '13.3.7 a) 4)') do + # check that undef is undefining method + # based on the method name + + def existing_method_a; true; end + def existing_method_b; true; end + def existing_method_c; true; end + def existing_method_d; true; end + def existing_method_e; true; end + def existing_method_f; true; end + + # check that methods are defined + + assert_true(existing_method_a, 'Method should be defined') + assert_true(existing_method_b, 'Method should be defined') + assert_true(existing_method_c, 'Method should be defined') + assert_true(existing_method_d, 'Method should be defined') + assert_true(existing_method_e, 'Method should be defined') + assert_true(existing_method_f, 'Method should be defined') + + # undefine in all possible ways and check that method + # is undefined + + undef existing_method_a + assert_raise(NoMethodError) do + existing_method_a + end + + undef :existing_method_b + assert_raise(NoMethodError) do + existing_method_b + end + + undef existing_method_c, existing_method_d + assert_raise(NoMethodError) do + existing_method_c + end + assert_raise(NoMethodError) do + existing_method_d + end + + undef :existing_method_e, :existing_method_f + assert_raise(NoMethodError) do + existing_method_e + end + assert_raise(NoMethodError) do + existing_method_f + end +end + +assert('The undef statement (method undefined)', '13.3.7 a) 5)') do + # check that undef is raising NameError if + # non-existing method should be undefined + + assert_raise(NameError) do + undef non_existing_method + end + + assert_raise(NameError) do + undef :non_existing_method + end +end |
