Example #1
0
 public function testBelongsToKey()
 {
     $config = array('from' => $this->_gallery, 'to' => $this->_image, 'type' => 'belongsTo', 'fieldName' => 'images');
     $relation = new Relationship($config + array('key' => 'gallery_id'));
     $expected = array('gallery_id' => 'id');
     $this->assertEqual($expected, $relation->key());
     $relation = new Relationship($config + array('key' => array('gallery_id' => 'id')));
     $this->assertEqual($expected, $relation->key());
 }