Files
yii/tests/framework/validators/CEmailValidatorTest.php
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

12 lines
247 B
PHP

<?php
require 'ValidatorTestModel.php';
class CEmailValidatorTest extends CTestCase
{
function testEmpty()
{
$model = new ValidatorTestModel();
$model->validate(array('email'));
$this->assertArrayHasKey('email', $model->getErrors());
}
}