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 36622ce commit 56394caCopy full SHA for 56394ca
tests/expressions/tests.py
@@ -1339,6 +1339,17 @@ def test_patterns_escape(self):
1339
Employee(firstname="Jean-Claude", lastname="Claude%"),
1340
Employee(firstname="Johnny", lastname="Joh\\n"),
1341
Employee(firstname="Johnny", lastname="_ohn"),
1342
+ Employee(firstname="Johnny", lastname="^Joh"),
1343
+ Employee(firstname="Johnny", lastname="Johnny$"),
1344
+ Employee(firstname="Johnny", lastname="Joh."),
1345
+ Employee(firstname="Johnny", lastname="[J]ohnny"),
1346
+ Employee(firstname="Johnny", lastname="(J)ohnny"),
1347
+ Employee(firstname="Johnny", lastname="J*ohnny"),
1348
+ Employee(firstname="Johnny", lastname="J+ohnny"),
1349
+ Employee(firstname="Johnny", lastname="J?ohnny"),
1350
+ Employee(firstname="Johnny", lastname="J{1}ohnny"),
1351
+ Employee(firstname="Johnny", lastname="J|ohnny"),
1352
+ Employee(firstname="Johnny", lastname="J-ohnny"),
1353
]
1354
)
1355
claude = Employee.objects.create(firstname="Jean-Claude", lastname="Claude")
0 commit comments