diff options
| author | Tomoyuki Sahara <[email protected]> | 2014-01-10 13:41:41 +0900 |
|---|---|---|
| committer | Tomoyuki Sahara <[email protected]> | 2014-01-10 13:41:41 +0900 |
| commit | 83413218a5f3681347128a491baebc5a21b0bc53 (patch) | |
| tree | e2cda23c3108d836b48b8fd5fd719b87a80e89c2 /test/t/kernel.rb | |
| parent | 3046cc7bd8bdf470dbe8eec2de4c7a1caedcd352 (diff) | |
| download | mruby-83413218a5f3681347128a491baebc5a21b0bc53.tar.gz mruby-83413218a5f3681347128a491baebc5a21b0bc53.zip | |
add operator "!~".
Diffstat (limited to 'test/t/kernel.rb')
| -rw-r--r-- | test/t/kernel.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/t/kernel.rb b/test/t/kernel.rb index 0f8fdebe4..e7c9c2635 100644 --- a/test/t/kernel.rb +++ b/test/t/kernel.rb @@ -479,6 +479,27 @@ assert('Kernel#!=') do assert_false (str2 != str1) end +# operator "!~" is defined in ISO Ruby 11.4.4. +assert('Kernel#!~') do + x = "x" + def x.=~(other) + other == "x" + end + assert_false x !~ "x" + assert_true x !~ "z" + + y = "y" + def y.=~(other) + other == "y" + end + def y.!~(other) + other == "not y" + end + assert_false y !~ "y" + assert_false y !~ "z" + assert_true y !~ "not y" +end + assert('Kernel#respond_to_missing?') do class Test4RespondToMissing def respond_to_missing?(method_name, include_private = false) |
