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 696d57a commit a6c3b9aCopy full SHA for a6c3b9a
tests/expressions/tests.py
@@ -1229,6 +1229,17 @@ def test_patterns_escape(self):
1229
Employee(firstname="Jean-Claude", lastname="Claude%"),
1230
Employee(firstname="Johnny", lastname="Joh\\n"),
1231
Employee(firstname="Johnny", lastname="_ohn"),
1232
+ Employee(firstname="Johnny", lastname="^Joh"),
1233
+ Employee(firstname="Johnny", lastname="Johnny$"),
1234
+ Employee(firstname="Johnny", lastname="Joh."),
1235
+ Employee(firstname="Johnny", lastname="[J]ohnny"),
1236
+ Employee(firstname="Johnny", lastname="(J)ohnny"),
1237
+ Employee(firstname="Johnny", lastname="J*ohnny"),
1238
+ Employee(firstname="Johnny", lastname="J+ohnny"),
1239
+ Employee(firstname="Johnny", lastname="J?ohnny"),
1240
+ Employee(firstname="Johnny", lastname="J{1}ohnny"),
1241
+ Employee(firstname="Johnny", lastname="J|ohnny"),
1242
+ Employee(firstname="Johnny", lastname="J-ohnny"),
1243
]
1244
)
1245
claude = Employee.objects.create(firstname="Jean-Claude", lastname="Claude")
0 commit comments