summaryrefslogtreecommitdiffhomepage
path: root/test/t/codegen.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-09-01 11:20:30 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-09-01 11:20:30 +0900
commitb80e0ef7428b613a682da4d2a251c8beb24d6dd2 (patch)
treed47427ac2f9bb454f9a47b79d6767ee27bd0c8f0 /test/t/codegen.rb
parent593c12a5cd670cfdb45741377236207a56541d37 (diff)
downloadmruby-b80e0ef7428b613a682da4d2a251c8beb24d6dd2.tar.gz
mruby-b80e0ef7428b613a682da4d2a251c8beb24d6dd2.zip
Move `Kernel#send` to `mruby-metaprog` gem.
But `BasicObject#__send__` is still available from the core.
Diffstat (limited to 'test/t/codegen.rb')
-rw-r--r--test/t/codegen.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/codegen.rb b/test/t/codegen.rb
index 154d44168..acb9e1bf5 100644
--- a/test/t/codegen.rb
+++ b/test/t/codegen.rb
@@ -184,14 +184,14 @@ assert('register window of calls (#3783)') do
# NODE_UNDEF
assert_nothing_raised do
class << Object.new
- undef send
+ undef inspect
end
end
# NODE_ALIAS
assert_nothing_raised do
class << Object.new
- alias send2 send
+ alias inspect2 inspect
end
end
end