Commit f77041ce by Franz Liedke

Add another test with quotes around the validation rule's parameter.

parent e407e675
......@@ -495,7 +495,10 @@ class ValidatorTest extends PHPUnit_Framework_TestCase {
$this->assertTrue(Validator::make($input, $rules)->valid());
$input['date'] = '2009-02-15 15:16:17';
$rules = array('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());
$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