I18nTest.php 327 Bytes
Newer Older
zYne's avatar
zYne committed
1 2 3 4 5 6 7 8 9 10
<?php
class I18nTest extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('name', 'string', 200);
        $this->hasColumn('title', 'string', 200);
    }
    public function setUp()
    {
meus's avatar
meus committed
11
        $this->actAs('I18n', array("fields" => array("name", "title")));
zYne's avatar
zYne committed
12 13
    }
}