mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 17:47:12 +03:00
42a40b4df0
Co-authored-by: Thomas Leonard <thomas@loftorbital.com>
10 lines
248 B
Python
10 lines
248 B
Python
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"
|