We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb6138 commit 5cc67eeCopy full SHA for 5cc67ee
tests/ImportTest.php
@@ -18,7 +18,8 @@ class ExtendedImport extends Nicklayb\LaravelDbImport\Import
18
]
19
];
20
protected $resetPassword = [
21
- 'users:password' => 'test'
+ 'users' => 'test',
22
+ 'users:super_secret_password' => 'new secret'
23
24
25
public function filterUsers($query)
@@ -101,7 +102,10 @@ public function testQualifiedManipulationName()
101
102
103
public function testGetPasswordResetValues()
104
{
- $expected = ['password' => 'test'];
105
+ $expected = [
106
+ 'super_secret_password' => 'new secret',
107
+ 'password' => 'test'
108
+ ];
109
$this->assertEquals($expected, $this->extendedImport->getPasswordResetValues('users'));
110
}
111
0 commit comments