mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-16 06:37:03 +03:00
48 lines
934 B
Python
48 lines
934 B
Python
|
import pytest
|
||
|
|
||
|
from ..data import initialize
|
||
|
from ..schema import schema
|
||
|
|
||
|
pytestmark = pytest.mark.django_db
|
||
|
|
||
|
|
||
|
def test_correct_fetch_first_ship_rebels():
|
||
|
initialize()
|
||
|
query = '''
|
||
|
query RebelsShipsQuery {
|
||
|
rebels {
|
||
|
name,
|
||
|
hero {
|
||
|
name
|
||
|
}
|
||
|
ships(first: 1) {
|
||
|
edges {
|
||
|
node {
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
'''
|
||
|
expected = {
|
||
|
'rebels': {
|
||
|
'name': 'Alliance to Restore the Republic',
|
||
|
'hero': {
|
||
|
'name': 'Human'
|
||
|
},
|
||
|
'ships': {
|
||
|
'edges': [
|
||
|
{
|
||
|
'node': {
|
||
|
'name': 'X-Wing'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
result = schema.execute(query)
|
||
|
assert not result.errors
|
||
|
assert result.data == expected
|