graphene-django/graphene_django/utils/tests/test_str_converters.py
Ülgen Sarıkavak 96c07d8034 Apply black
2022-08-18 14:34:44 +03:00

11 lines
264 B
Python

# coding: utf-8
from ..str_converters import to_const
def test_to_const():
assert to_const('snakes $1. on a "#plane') == "SNAKES_1_ON_A_PLANE"
def test_to_const_unicode():
assert to_const("Skoða þetta unicode stöff") == "SKODA_THETTA_UNICODE_STOFF"