Commit de53feb0 by Franz Liedke

Fix validation tests one more time.

parent f77041ce
......@@ -494,11 +494,8 @@ class ValidatorTest extends PHPUnit_Framework_TestCase {
$rules = array('date' => 'date_format:j-M-Y');
$this->assertTrue(Validator::make($input, $rules)->valid());
$input['date'] = '2009-02-15 15:16:17';
$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"';
$input['date'] = '2009-02-15,15:16:17';
$rules['date'] = 'date_format:"Y-m-d,H:i:s"';
$this->assertTrue(Validator::make($input, $rules)->valid());
$input['date'] = '2009-02-15';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment