Sha256: 95bde7f16f86f0854b6495f416f1152170aec0584f97aee8947ac1b123e83f04
Contents?: true
Size: 916 Bytes
Versions: 2
Compression:
Stored size: 916 Bytes
Contents
require "helper" class TestObjectProxyTarget < Test::Unit::TestCase def setup @target = "target" @proxy = ObjectProxy.new(@target) do def length_plus_one proxy_target.length + 1 end end end test "non-existing proxy method call is passed to the target" do assert_equal @target.length, @proxy.length end test "proxy method returns correct result" do assert_equal @target.length + 1, @proxy.length_plus_one end test "object_id method call is passed to proxy target" do assert_equal @target.object_id, @proxy.object_id end test "send method call is passed to proxy target" do assert_equal @target.send(:length), @proxy.send(:length) end test "== method is passed to proxy_target" do assert @target == @proxy assert @proxy == @target end test "equal? method is passed to proxy_target" do assert @proxy.equal?(@target) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
proxies-0.1.1 | test/test_object_proxy_target.rb |
proxies-0.1.0 | test/test_object_proxy_target.rb |