Fix validation tests one more time.
This commit is contained in:
@@ -494,11 +494,8 @@ class ValidatorTest extends PHPUnit_Framework_TestCase {
|
|||||||
$rules = array('date' => 'date_format:j-M-Y');
|
$rules = array('date' => 'date_format:j-M-Y');
|
||||||
$this->assertTrue(Validator::make($input, $rules)->valid());
|
$this->assertTrue(Validator::make($input, $rules)->valid());
|
||||||
|
|
||||||
$input['date'] = '2009-02-15 15:16:17';
|
$input['date'] = '2009-02-15,15:16:17';
|
||||||
$rules['date'] = 'date_format:Y-m-d H\\:i\\:s';
|
$rules['date'] = 'date_format:"Y-m-d,H:i:s"';
|
||||||
$this->assertTrue(Validator::make($input, $rules)->valid());
|
|
||||||
|
|
||||||
$rules['date'] = 'date_format:"Y-m-d H:i:s"';
|
|
||||||
$this->assertTrue(Validator::make($input, $rules)->valid());
|
$this->assertTrue(Validator::make($input, $rules)->valid());
|
||||||
|
|
||||||
$input['date'] = '2009-02-15';
|
$input['date'] = '2009-02-15';
|
||||||
|
|||||||
Reference in New Issue
Block a user