Mod setArray macro for nested values

This commit is contained in:
philipp lang 2024-10-24 22:39:45 +02:00
parent a0091ec995
commit 019f421c9b
1 changed files with 10 additions and 3 deletions

View File

@ -174,10 +174,17 @@ class TestCase extends BaseTestCase
return $this; return $this;
}); });
Testable::macro('setArray', function ($attributes) { Testable::macro('setArray', function ($attributes, $value = null) {
$self = $this; $self = $this;
foreach ($attributes as $key => $value) { if ($value === null) {
$self = $this->set($key, $value); 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; return $self;