Author: jwage Date: 2008-09-08 21:28:00 +0100 (Mon, 08 Sep 2008) New Revision: 4892
Added: branches/1.0/tests/Ticket/1351TestCase.php Modified: branches/1.0/tests/run.php Log: Adding coverage for #1351 Added: branches/1.0/tests/Ticket/1351TestCase.php =================================================================== --- branches/1.0/tests/Ticket/1351TestCase.php (rev 0) +++ branches/1.0/tests/Ticket/1351TestCase.php 2008-09-08 20:28:00 UTC (rev 4892) @@ -0,0 +1,76 @@ +<?php +/* + * $Id$ + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the LGPL. For more information, see + * <http://www.phpdoctrine.org>. + */ + +/** + * Doctrine_Ticket_1351_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen <[EMAIL PROTECTED]> + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.org + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Ticket_1351_TestCase extends Doctrine_UnitTestCase +{ + public function prepareTables() + { + $this->tables[] = 'Ticket_1351_Article'; + parent::prepareTables(); + } + + public function testTest() + { + $yml = <<<END +Ticket_1351_Article: + Ticket_1351_Article_1: + Translation: + en: + title: Test title english + body: Test body english + fr: + title: Test title french + body: Test body french +END; + file_put_contents('test.yml', $yml); + Doctrine::loadData('test.yml'); + unlink('test.yml'); + $results = Doctrine_Query::create() + ->from('Ticket_1351_Article a, a.Translation t') + ->fetchArray(); + $this->assertEqual($results[0]['Translation']['en']['title'], 'Test title english'); + } +} + +class Ticket_1351_Article extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->hasColumn('title', 'string', 255); + $this->hasColumn('body', 'clob'); + } + + public function setUp() + { + $this->actAs('I18n', array('fields' => array('title', 'body'))); + } +} \ No newline at end of file Modified: branches/1.0/tests/run.php =================================================================== --- branches/1.0/tests/run.php 2008-09-08 20:15:51 UTC (rev 4891) +++ branches/1.0/tests/run.php 2008-09-08 20:28:00 UTC (rev 4892) @@ -124,6 +124,7 @@ $tickets->addTestCase(new Doctrine_Ticket_1325_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1326_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1335_TestCase()); +$tickets->addTestCase(new Doctrine_Ticket_1351_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1365_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1372_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1381_TestCase()); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "doctrine-svn" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.co.uk/group/doctrine-svn?hl=en-GB -~----------~----~----~----~------~----~------~--~---
