Changeset 4812
- Timestamp:
- 08/26/08 00:39:33 (5 months ago)
- Location:
- branches/1.0
- Files:
-
- 2 modified
-
lib/Doctrine/Manager.php (modified) (1 diff)
-
tests/ConfigurableTestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Manager.php
r4659 r4812 97 97 Doctrine::ATTR_QUOTE_IDENTIFIER => false, 98 98 Doctrine::ATTR_SEQCOL_NAME => 'id', 99 Doctrine::ATTR_PORTABILITY => Doctrine::PORTABILITY_ ALL,99 Doctrine::ATTR_PORTABILITY => Doctrine::PORTABILITY_NONE, 100 100 Doctrine::ATTR_EXPORT => Doctrine::EXPORT_ALL, 101 101 Doctrine::ATTR_DECIMAL_PLACES => 2, -
branches/1.0/tests/ConfigurableTestCase.php
r4029 r4812 114 114 } 115 115 public function testDefaultPortabilityAttributeValueIsAll() { 116 $this->assertEqual($this->manager->getAttribute(Doctrine::ATTR_PORTABILITY), Doctrine::PORTABILITY_ ALL);116 $this->assertEqual($this->manager->getAttribute(Doctrine::ATTR_PORTABILITY), Doctrine::PORTABILITY_NONE); 117 117 } 118 118 public function testPortabilityAttributeAcceptsPortabilityConstants() {