Adding test to disprove #385. Proves saveAll with validate => first behaves correctly.

This commit is contained in:
mark_story 2009-12-04 14:39:12 -05:00
parent be64f26f9f
commit cc750d15f1

View file

@ -3067,6 +3067,19 @@ class ModelWriteTest extends BaseModelTest {
'attachment' => 'some_file.zip' 'attachment' => 'some_file.zip'
))); )));
$this->assertEqual($result, $expected); $this->assertEqual($result, $expected);
$model->Attachment->bindModel(array('belongsTo' => array('Comment')), false);
$data = array(
'Comment' => array(
'comment' => 'Comment with attachment',
'article_id' => 1,
'user_id' => 1
),
'Attachment' => array(
'attachment' => 'some_file.zip'
));
$this->assertTrue($model->saveAll($data, array('validate' => 'first')));
} }
/** /**
* testSaveAllBelongsTo method * testSaveAllBelongsTo method