mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 20:27:03 +03:00
36 lines
906 B
Python
36 lines
906 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# snapshottest: v1
|
|
# https://pypi.python.org/pypi/snapshottest
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from snapshottest import Snapshot
|
|
|
|
|
|
snapshots = Snapshot()
|
|
|
|
snapshots['test_correct_fetch_first_ship_rebels 1'] = {
|
|
'data': {
|
|
'rebels': {
|
|
'name': 'Alliance to Restore the Republic',
|
|
'ships': {
|
|
'pageInfo': {
|
|
'startCursor': 'YXJyYXljb25uZWN0aW9uOjA=',
|
|
'endCursor': 'YXJyYXljb25uZWN0aW9uOjA=',
|
|
'hasNextPage': True,
|
|
'hasPreviousPage': False
|
|
},
|
|
'edges': [
|
|
{
|
|
'cursor': 'YXJyYXljb25uZWN0aW9uOjA=',
|
|
'node': {
|
|
'name': 'X-Wing'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|