Fixed bug with ignore403 for engine-based sites

This commit is contained in:
Soxoj
2021-03-28 17:27:56 +03:00
parent e5fc221ce2
commit 2741680d4a
4 changed files with 15 additions and 20 deletions
+7
View File
@@ -26,6 +26,13 @@ def test_case_convert_snake_to_title():
assert b == 'Camel cased string'
def test_case_convert_camel_with_digits_to_snake():
a = 'ignore403'
b = CaseConverter.camel_to_snake(a)
assert b == 'ignore403'
def test_is_country_tag():
assert is_country_tag('ru') == True
assert is_country_tag('FR') == True