-
- Notifications
You must be signed in to change notification settings - Fork 73
Open
Labels
Description
- bug report? yes/no
- feature request? yes/no
- version: v1.7.1
Description
Until you realize, that your regex pattern cannot be delimited with /, the function does not work properly.
Steps To Reproduce
fails: Assert::match('/^foo$/', 'foo');
passes: Assert::match('#^foo$#', 'foo');
Perhaps it would be better to avoid this magic behavior (there is no indication you have done anything wrong) and add an extra assert for those tester expressions (with appropriate name) and keep this only for regular expressions, to avoid confusion. Or vice versa.