/test/testsuite/generator/behavior/sortable/SortableBehaviorTest.php
https://github.com/nextbigsound/propel-orm · PHP · 33 lines · 14 code · 4 blank · 15 comment · 0 complexity · 1d1ff4d2d7bb551ec1ed8d3ccc00360a MD5 · raw file
- <?php
- /*
- * $Id$
- * This file is part of the Propel package.
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @license MIT License
- */
- require_once 'tools/helpers/bookstore/BookstoreTestBase.php';
- /**
- * Tests for SortableBehavior class
- *
- * @author Massimiliano Arione
- * @version $Revision$
- * @package generator.behavior.sortable
- */
- class SortableBehaviorTest extends BookstoreTestBase
- {
- public function testParameters()
- {
- $table11 = Table11Peer::getTableMap();
- $this->assertEquals(count($table11->getColumns()), 3, 'Sortable adds one columns by default');
- $this->assertTrue(method_exists('Table11', 'getRank'), 'Sortable adds a rank column by default');
- $table12 = Table12Peer::getTableMap();
- $this->assertEquals(count($table12->getColumns()), 4, 'Sortable does not add a column when it already exists');
- $this->assertTrue(method_exists('Table12', 'getPosition'), 'Sortable allows customization of rank_column name');
- }
- }