diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2019-10-07 21:59:40 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2019-10-07 21:59:40 +0200 |
commit | 8d090438b659b641dd0f6cbc99193f3b48b2fc4b (patch) | |
tree | 030e2b069d4583e6ad6e498612c959c15850c8e6 /tests/Unit/Http/Validation/ValidatorTest.php | |
parent | faf74150e9481ad9338eb6cc2428d02b24e9fc43 (diff) |
Validation rules: min/max/between: Use string length to compare strings
Diffstat (limited to 'tests/Unit/Http/Validation/ValidatorTest.php')
-rw-r--r-- | tests/Unit/Http/Validation/ValidatorTest.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Unit/Http/Validation/ValidatorTest.php b/tests/Unit/Http/Validation/ValidatorTest.php index 450e5d4e..124673df 100644 --- a/tests/Unit/Http/Validation/ValidatorTest.php +++ b/tests/Unit/Http/Validation/ValidatorTest.php @@ -50,9 +50,10 @@ class ValidatorTest extends TestCase )); $this->assertFalse($val->validate( - ['lorem' => 2], - ['lorem' => 'required|min:3|max:10'] + ['lorem' => 'OMG'], + ['lorem' => 'required|min:4|max:10'] )); + $this->assertEquals(['lorem' => ['validation.lorem.min']], $val->getErrors()); $this->assertFalse($val->validate( ['lorem' => 42], ['lorem' => 'required|min:3|max:10'] |