mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-26 11:33:44 +03:00
Removed Django < 1.11 compatibility checks from tests
This commit is contained in:
parent
f8dff38e29
commit
0314931f12
|
@ -237,16 +237,12 @@ def test_should_manytomany_convert_connectionorlist_connection():
|
||||||
|
|
||||||
|
|
||||||
def test_should_manytoone_convert_connectionorlist():
|
def test_should_manytoone_convert_connectionorlist():
|
||||||
# Django 1.9 uses 'rel', <1.9 uses 'related
|
|
||||||
related = getattr(Reporter.articles, "rel", None) or getattr(
|
|
||||||
Reporter.articles, "related"
|
|
||||||
)
|
|
||||||
|
|
||||||
class A(DjangoObjectType):
|
class A(DjangoObjectType):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Article
|
model = Article
|
||||||
|
|
||||||
graphene_field = convert_django_field(related, A._meta.registry)
|
graphene_field = convert_django_field(Reporter.articles.rel,
|
||||||
|
A._meta.registry)
|
||||||
assert isinstance(graphene_field, graphene.Dynamic)
|
assert isinstance(graphene_field, graphene.Dynamic)
|
||||||
dynamic_field = graphene_field.get_type()
|
dynamic_field = graphene_field.get_type()
|
||||||
assert isinstance(dynamic_field, graphene.Field)
|
assert isinstance(dynamic_field, graphene.Field)
|
||||||
|
@ -255,14 +251,12 @@ def test_should_manytoone_convert_connectionorlist():
|
||||||
|
|
||||||
|
|
||||||
def test_should_onetoone_reverse_convert_model():
|
def test_should_onetoone_reverse_convert_model():
|
||||||
# Django 1.9 uses 'rel', <1.9 uses 'related
|
|
||||||
related = getattr(Film.details, "rel", None) or getattr(Film.details, "related")
|
|
||||||
|
|
||||||
class A(DjangoObjectType):
|
class A(DjangoObjectType):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = FilmDetails
|
model = FilmDetails
|
||||||
|
|
||||||
graphene_field = convert_django_field(related, A._meta.registry)
|
graphene_field = convert_django_field(Film.details.related,
|
||||||
|
A._meta.registry)
|
||||||
assert isinstance(graphene_field, graphene.Dynamic)
|
assert isinstance(graphene_field, graphene.Dynamic)
|
||||||
dynamic_field = graphene_field.get_type()
|
dynamic_field = graphene_field.get_type()
|
||||||
assert isinstance(dynamic_field, graphene.Field)
|
assert isinstance(dynamic_field, graphene.Field)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user