Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ public static function dataWithReader(): array
'search: contains, same case, case sensitive: null' => ['email', 'ed@be', null, [2]],
'search: contains, same case, case sensitive: false' => ['email', 'ed@be', false, [2]],
'search: contains, different case, case sensitive: false' => ['email', 'SEED@', false, [2]],
'search: contains, same case, case sensitive: true' => ['email', 'ed@be', true, [2]],
'search: contains, different case, case sensitive: true' => ['email', 'SEED@', true, []],
'wildcard is not supported, %' => ['email', '%st', null, []],
'wildcard is not supported, _' => ['email', '____@___t', null, []],
'search: contains backslash' => ['email', 'foo@bar\\baz', null, [0]],
Expand Down
Loading