summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-binding/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-07-26 10:46:36 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-07-26 10:46:36 +0900
commit22b24d5d7616a755fe3b86590dd1933ee8dae82a (patch)
tree27d65730c534c4af974838f99e2e213a823cecd2 /mrbgems/mruby-binding/test
parent26340a8818e0d54b6fde7a3a1c5f38c9137065bf (diff)
downloadmruby-22b24d5d7616a755fe3b86590dd1933ee8dae82a.tar.gz
mruby-22b24d5d7616a755fe3b86590dd1933ee8dae82a.zip
test/binding.rb: remove a duplicated test.
Diffstat (limited to 'mrbgems/mruby-binding/test')
-rw-r--r--mrbgems/mruby-binding/test/binding.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/mrbgems/mruby-binding/test/binding.rb b/mrbgems/mruby-binding/test/binding.rb
index 296fb48d4..bfae84c59 100644
--- a/mrbgems/mruby-binding/test/binding.rb
+++ b/mrbgems/mruby-binding/test/binding.rb
@@ -43,13 +43,6 @@ assert("Binding#local_variable_get") do
}
end
-assert("Binding#source_location") do
- skip unless -> {}.source_location
-
- bind, source_location = binding, [__FILE__, __LINE__]
- assert_equal source_location, bind.source_location
-end
-
assert "Kernel#binding and .eval from C" do
bind = binding_in_c
assert_equal 5, bind.eval("2 + 3")