From ab2b1570fdfcb6fa148f30ccd6edcff6428b4d7a Mon Sep 17 00:00:00 2001 From: Daniel Schierbeck Date: Sun, 21 Sep 2008 14:56:02 +0200 Subject: Made the :prefix option on Module#delegate accept a custom prefix. Signed-off-by: Michael Koziarski --- activesupport/test/core_ext/module_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb index 071eefcb29..46d63748bc 100644 --- a/activesupport/test/core_ext/module_test.rb +++ b/activesupport/test/core_ext/module_test.rb @@ -38,6 +38,7 @@ end Invoice = Struct.new(:client) do delegate :street, :city, :name, :to => :client, :prefix => true + delegate :street, :city, :name, :to => :client, :prefix => :customer end class Name @@ -97,6 +98,14 @@ class ModuleTest < Test::Unit::TestCase assert_equal invoice.client_city, "Chicago" end + def test_delegation_custom_prefix + david = Someone.new("David", Somewhere.new("Paulina", "Chicago")) + invoice = Invoice.new(david) + assert_equal invoice.customer_name, "David" + assert_equal invoice.customer_street, "Paulina" + assert_equal invoice.customer_city, "Chicago" + end + def test_parent assert_equal Yz::Zy, Yz::Zy::Cd.parent assert_equal Yz, Yz::Zy.parent -- cgit v1.2.3