Mod setArray macro for nested values
This commit is contained in:
parent
49f972bc1b
commit
3bc038c4c1
|
@ -174,11 +174,18 @@ class TestCase extends BaseTestCase
|
|||
return $this;
|
||||
});
|
||||
|
||||
Testable::macro('setArray', function ($attributes) {
|
||||
Testable::macro('setArray', function ($attributes, $value = null) {
|
||||
$self = $this;
|
||||
if ($value === null) {
|
||||
foreach ($attributes as $key => $value) {
|
||||
$self = $this->set($key, $value);
|
||||
}
|
||||
return $self;
|
||||
}
|
||||
|
||||
foreach ($value as $key => $v) {
|
||||
$self = $self->set($attributes . '.' . $key, $v);
|
||||
}
|
||||
|
||||
return $self;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue