1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-22 21:03:09 +02:00

add preg_quote, add test on regex special symbols

This commit is contained in:
Yuri Druzhkov
2014-04-15 10:09:11 +04:00
parent 5c5087db13
commit f74f535b78
2 changed files with 5 additions and 5 deletions

View File

@@ -346,7 +346,8 @@ abstract class CommonTest extends PHPUnit_Framework_TestCase
array('podekhal-k-podezdu-moego-doma', 'подъехал к подъезду моего дома'),
array('foo:bar:baz', 'Foo bar baz', ':'),
array('a_string_with_underscores', 'A_string with_underscores', '_'),
array('a_string_with_dashes', 'A string-with-dashes', '_')
array('a_string_with_dashes', 'A string-with-dashes', '_'),
array('a\string\with\dashes', 'A string-with-dashes', '\\')
);
}