missed a test branch

This commit is contained in:
John Bintz 2009-11-12 20:29:05 -05:00
parent cc609bc79f
commit 2f5777e5f0
2 changed files with 19 additions and 1 deletions

View File

@ -3,4 +3,4 @@
<php>
<ini name="error_reporting" value="30719" />
</php>
</phpunit>
</phpunit>

View File

@ -80,6 +80,24 @@ class ComicPressAdminTest extends PHPUnit_Framework_TestCase {
)
)
),
array(
array(
'image_types' => array(
'comic' => array('default' => true, 'dimensions' => '500x50'),
'archive' => array('dimensions' => '100x100'),
)
),
array(
'image_types' => array(
'archive' => array('dimensions' => array('width' => '100', 'height' => '100')),
)
),
array(
'image_types' => array(
'archive' => array('default' => true, 'dimensions' => '100x100'),
)
)
),
);
}