Skip to content

Commit

Permalink
WIP - Validator Tests for regular schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorkmaz committed Jan 26, 2017
1 parent 79cf758 commit d031ce6
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions tests/ValidatorClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,13 @@ class MyValidatorClass extends TestCase
'is_active' => [
'type' => 'enum',
'values' => ['0', '1']
],
'children' => [
'name' => [
'type' => 'text'
]
]
];

public $validData = [
'id' => 1,
'email' => 'mehmet@github.com',
'is_active' => '1',
'children' => [
['name' => 'Jon'],
['name' => 'Jane']
]
'is_active' => '1'
];


Expand Down

0 comments on commit d031ce6

Please sign in to comment.