From 13077a8f2f9ec57f19f11e9159b85c4a2b4f7425 Mon Sep 17 00:00:00 2001 From: mark_story Date: Fri, 22 Jun 2012 21:44:37 -0400 Subject: [PATCH] Add tests for previous commit. --- lib/Cake/Test/Case/Network/Email/CakeEmailTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Cake/Test/Case/Network/Email/CakeEmailTest.php b/lib/Cake/Test/Case/Network/Email/CakeEmailTest.php index 7e9cae7ffa1..22591c4b67b 100644 --- a/lib/Cake/Test/Case/Network/Email/CakeEmailTest.php +++ b/lib/Cake/Test/Case/Network/Email/CakeEmailTest.php @@ -82,6 +82,7 @@ class EmailConfig { 'subject' => 'Test mail subject', 'transport' => 'Debug', 'theme' => 'TestTheme', + 'helpers' => array('Html', 'Form'), ); } @@ -733,6 +734,9 @@ public function testConfigString() { $result = $this->CakeEmail->transportClass(); $this->assertInstanceOf('DebugTransport', $result); + + $result = $this->CakeEmail->helpers(); + $this->assertEquals($configs->test['helpers'], $result); } /**